From 9387e261c1a5d783959f95b73b15e68288c29d4d Mon Sep 17 00:00:00 2001 From: Cristiano Lacerda Date: Thu, 5 Mar 2020 14:50:29 -0300 Subject: [PATCH 1/5] ability to skip when both decks are playing --- src/library/autodj/autodjprocessor.cpp | 22 +++++++++++++++++++--- src/library/autodj/autodjprocessor.h | 2 +- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/library/autodj/autodjprocessor.cpp b/src/library/autodj/autodjprocessor.cpp index e9b3c642dd4..3955ff113ee 100644 --- a/src/library/autodj/autodjprocessor.cpp +++ b/src/library/autodj/autodjprocessor.cpp @@ -234,6 +234,18 @@ AutoDJProcessor::AutoDJError AutoDJProcessor::skipNext() { } else if (!rightDeck.isPlaying()) { removeLoadedTrackFromTopOfQueue(rightDeck); loadNextTrackFromQueue(rightDeck); + } else { + // If both decks are playing remove next track in playlist + TrackId nextId = m_pAutoDJTableModel->getTrackId(m_pAutoDJTableModel->index(0, 0)); + TrackId leftId = leftDeck.getLoadedTrack()->getId(); + TrackId rightId = rightDeck.getLoadedTrack()->getId(); + if (nextId == leftId || nextId == rightId) { + // One of the playing tracks is still on top of playlist, remove second item + m_pAutoDJTableModel->removeTrack(m_pAutoDJTableModel->index(1, 0)); + } else { + m_pAutoDJTableModel->removeTrack(m_pAutoDJTableModel->index(0, 0)); + } + maybeFillRandomTracks(); } return ADJ_OK; } @@ -668,7 +680,13 @@ bool AutoDJProcessor::removeTrackFromTopOfQueue(TrackPointer pTrack) { m_pAutoDJTableModel->appendTrack(nextId); } - // Fill random tracks if configured + maybeFillRandomTracks(); + + return true; +} + +void AutoDJProcessor::maybeFillRandomTracks() { + int minAutoDJCrateTracks = m_pConfig->getValueString( ConfigKey(kConfigKey, "RandomQueueMinimumAllowed")).toInt(); bool randomQueueEnabled = (((m_pConfig->getValueString( @@ -679,8 +697,6 @@ bool AutoDJProcessor::removeTrackFromTopOfQueue(TrackPointer pTrack) { qDebug() << "Randomly adding tracks"; emit(randomTrackRequested(tracksToAdd)); } - - return true; } void AutoDJProcessor::playerPlayChanged(DeckAttributes* pAttributes, bool playing) { diff --git a/src/library/autodj/autodjprocessor.h b/src/library/autodj/autodjprocessor.h index 8a560a50b9b..f8b46fffb8d 100644 --- a/src/library/autodj/autodjprocessor.h +++ b/src/library/autodj/autodjprocessor.h @@ -191,7 +191,7 @@ class AutoDJProcessor : public QObject { // Removes the provided track from the top of the AutoDJ queue if it is // present. bool removeTrackFromTopOfQueue(TrackPointer pTrack); - + void maybeFillRandomTracks(); UserSettingsPointer m_pConfig; PlayerManagerInterface* m_pPlayerManager; PlaylistTableModel* m_pAutoDJTableModel; From 7255b7b17ff51fe9dfb38019b309f810d78313d0 Mon Sep 17 00:00:00 2001 From: Cristiano Lacerda Date: Fri, 6 Mar 2020 14:20:24 -0300 Subject: [PATCH 2/5] should remove whitespace error --- compile_commands.json | 4537 ++++++++++++++++++++++++ src/.DS_Store | Bin 0 -> 8196 bytes src/library/.DS_Store | Bin 0 -> 8196 bytes src/library/autodj/autodjprocessor.cpp | 2 - 4 files changed, 4537 insertions(+), 2 deletions(-) create mode 100644 compile_commands.json create mode 100644 src/.DS_Store create mode 100644 src/library/.DS_Store diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 00000000000..81b7f3eddad --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,4537 @@ +[ + { + "command": "g++ -o osx64_build/src/control/control.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/control.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/control.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlaudiotaperpot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlaudiotaperpot.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlaudiotaperpot.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlbehavior.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlbehavior.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlbehavior.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controleffectknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controleffectknob.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controleffectknob.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlindicator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlindicator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlindicator.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controllinpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controllinpotmeter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controllinpotmeter.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controllogpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controllogpotmeter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controllogpotmeter.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlobject.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlobject.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlobjectscript.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlobjectscript.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlobjectscript.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlpotmeter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlpotmeter.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlproxy.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlproxy.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlpushbutton.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlpushbutton.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlttrotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlttrotary.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlttrotary.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/controlencoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlencoder.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/control/controlencoder.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/dlgcontrollerlearning.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgcontrollerlearning.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/dlgcontrollerlearning.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/dlgprefcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgprefcontroller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/dlgprefcontroller.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/dlgprefcontrollers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgprefcontrollers.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/dlgprefcontrollers.cpp" + }, + { + "command": "g++ -o osx64_build/src/dialog/dlgabout.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/dialog/dlgabout.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/dialog/dlgabout.cpp" + }, + { + "command": "g++ -o osx64_build/src/dialog/dlgdevelopertools.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/dialog/dlgdevelopertools.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/dialog/dlgdevelopertools.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/configobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/configobject.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/configobject.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefautodj.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefautodj.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefdeck.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefdeck.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefcrossfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefcrossfader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefcrossfader.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefeffects.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefeffects.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefeffects.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefeq.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefeq.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefeq.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreferences.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreferences.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgpreferences.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefinterface.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefinterface.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefinterface.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreflibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreflibrary.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgpreflibrary.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefnovinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefnovinyl.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefnovinyl.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefrecord.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefrecord.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefreplaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefreplaygain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefreplaygain.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefsound.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefsound.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefsound.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefsounditem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefsounditem.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefsounditem.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefwaveform.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefwaveform.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefbeats.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefbeats.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefkey.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefkey.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/settingsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/settingsmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/settingsmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/replaygainsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/replaygainsettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/replaygainsettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/broadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/broadcastsettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/broadcastsettings_legacy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettings_legacy.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/broadcastsettings_legacy.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/broadcastsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettingsmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/broadcastsettingsmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/effectsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/effectsettingsmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/effectsettingsmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/broadcastprofile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastprofile.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/broadcastprofile.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/upgrade.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/upgrade.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/upgrade.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dlgpreferencepage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dlgpreferencepage.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dlgpreferencepage.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectmanifest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectmanifest.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectmanifest.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectmanifestparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectmanifestparameter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectmanifestparameter.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectchain.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectparameter.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectrack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectrack.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectchainslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchainslot.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectchainslot.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectslot.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectslot.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectparameterslotbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameterslotbase.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectparameterslotbase.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameterslot.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectparameterslot.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectbuttonparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectbuttonparameterslot.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectbuttonparameterslot.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectsmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectsmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectchainmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchainmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectchainmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/effectsbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectsbackend.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/effectsbackend.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/builtinbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/builtinbackend.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/builtinbackend.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/bitcrushereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bitcrushereffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/bitcrushereffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/balanceeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/balanceeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/balanceeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/linkwitzriley8eqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/linkwitzriley8eqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/linkwitzriley8eqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/bessel4lvmixeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bessel4lvmixeqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/bessel4lvmixeqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/bessel8lvmixeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bessel8lvmixeqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/bessel8lvmixeqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/threebandbiquadeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/threebandbiquadeqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/threebandbiquadeqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/biquadfullkilleqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/biquadfullkilleqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/biquadfullkilleqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/loudnesscontoureffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/loudnesscontoureffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/loudnesscontoureffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/graphiceqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/graphiceqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/graphiceqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/parametriceqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/parametriceqeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/parametriceqeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/flangereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/flangereffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/flangereffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/filtereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/filtereffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/filtereffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/moogladder4filtereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/moogladder4filtereffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/moogladder4filtereffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/reverbeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/reverbeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/reverbeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/echoeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/echoeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/echoeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/autopaneffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/autopaneffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/autopaneffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/phasereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/phasereffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/phasereffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/metronomeeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/metronomeeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/metronomeeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/tremoloeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/tremoloeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/builtin/tremoloeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/effects/engineeffectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectsmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/effects/engineeffectsmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/effects/engineeffectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectrack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/effects/engineeffectrack.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/effects/engineeffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectchain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/effects/engineeffectchain.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/effects/engineeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/effects/engineeffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/basesyncablelistener.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/basesyncablelistener.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sync/basesyncablelistener.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/enginesync.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/enginesync.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sync/enginesync.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/synccontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/synccontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sync/synccontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/internalclock.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/internalclock.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sync/internalclock.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/engineworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineworker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/engineworker.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/engineworkerscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineworkerscheduler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/engineworkerscheduler.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginebuffer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginebuffer.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscale.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscale.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/bufferscalers/enginebufferscale.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalelinear.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalelinear.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/bufferscalers/enginebufferscalelinear.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/engineaux.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/engineaux.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/channels/engineaux.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/enginechannel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginechannel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/channels/enginechannel.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/enginedeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginedeck.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/channels/enginedeck.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/enginemicrophone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginemicrophone.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/channels/enginemicrophone.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterbiquad1.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbiquad1.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterbiquad1.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefiltermoogladder4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefiltermoogladder4.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefiltermoogladder4.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterbessel4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbessel4.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterbessel4.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterbessel8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbessel8.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterbessel8.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterbutterworth4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbutterworth4.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterbutterworth4.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterbutterworth8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbutterworth8.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterbutterworth8.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley2.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterlinkwitzriley2.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley4.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterlinkwitzriley4.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley8.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilterlinkwitzriley8.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/enginefilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/filters/enginefilter.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/engineobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineobject.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/engineobject.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginepregain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginepregain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginepregain.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginemaster.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginemaster.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginemaster.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginedelay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginedelay.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginedelay.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginevumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginevumeter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginevumeter.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginesidechaincompressor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginesidechaincompressor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginesidechaincompressor.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/enginesidechain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginesidechain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/enginesidechain.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/networkoutputstreamworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/networkoutputstreamworker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/networkoutputstreamworker.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/networkinputstreamworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/networkinputstreamworker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/networkinputstreamworker.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginexfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginexfader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginexfader.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/channelmixer_autogen.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channelmixer_autogen.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/channelmixer_autogen.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/positionscratchcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/positionscratchcontroller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/positionscratchcontroller.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/bpmcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/bpmcontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/bpmcontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/clockcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/clockcontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/clockcontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/cuecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/cuecontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/cuecontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/enginecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/enginecontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/enginecontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/keycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/keycontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/keycontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/loopingcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/loopingcontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/loopingcontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/quantizecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/quantizecontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/quantizecontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/ratecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/ratecontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/ratecontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/readaheadmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/readaheadmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/readaheadmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/enginetalkoverducking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginetalkoverducking.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/enginetalkoverducking.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/cachingreader/cachingreader.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreaderchunk.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreaderchunk.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/cachingreader/cachingreaderchunk.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreaderworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreaderworker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/cachingreader/cachingreaderworker.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/trackanalysisscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/trackanalysisscheduler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/trackanalysisscheduler.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerthread.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzerthread.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzerwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerwaveform.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzerwaveform.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzergain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzergain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzergain.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzerbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerbeats.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzerbeats.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzerkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerkey.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzerkey.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzerebur128.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerebur128.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzerebur128.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/analyzersilence.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzersilence.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/analyzersilence.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/plugins/analyzersoundtouchbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzersoundtouchbeats.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/plugins/analyzersoundtouchbeats.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/plugins/analyzerqueenmarybeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzerqueenmarybeats.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/plugins/analyzerqueenmarybeats.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/plugins/analyzerqueenmarykey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzerqueenmarykey.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/plugins/analyzerqueenmarykey.cpp" + }, + { + "command": "g++ -o osx64_build/src/analyzer/plugins/buffering_utils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/buffering_utils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/analyzer/plugins/buffering_utils.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controller.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerdebug.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerdebug.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerdebug.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerengine.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerengine.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerengine.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerenumerator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerenumerator.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerlearningeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerlearningeventfilter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerlearningeventfilter.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllermanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllermanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetfilehandler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerpresetfilehandler.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerpresetinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetinfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerpresetinfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerpresetinfoenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetinfoenumerator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerpresetinfoenumerator.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controlpickermenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controlpickermenu.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controlpickermenu.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllermappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllermappingtablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllermappingtablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controllerinputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerinputmappingtablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controllerinputmappingtablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/controlleroutputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controlleroutputmappingtablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/controlleroutputmappingtablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/controldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/controldelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/delegates/controldelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/midichanneldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midichanneldelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/delegates/midichanneldelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/midiopcodedelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midiopcodedelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/delegates/midiopcodedelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/midibytedelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midibytedelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/delegates/midibytedelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/midioptionsdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midioptionsdelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/delegates/midioptionsdelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/learningutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/learningutils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/learningutils.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midimessage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midimessage.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midimessage.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midiutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midiutils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midiutils.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midicontroller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midicontroller.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midicontrollerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midicontrollerpresetfilehandler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midicontrollerpresetfilehandler.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midienumerator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midienumerator.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/midioutputhandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midioutputhandler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/midioutputhandler.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/softtakeover.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/softtakeover.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/softtakeover.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/keyboard/keyboardeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/keyboard/keyboardeventfilter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/keyboard/keyboardeventfilter.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/colorjsproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/colorjsproxy.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/colorjsproxy.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixxx.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixxx.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixxxapplication.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixxxapplication.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixxxapplication.cpp" + }, + { + "command": "g++ -o osx64_build/src/errordialoghandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/errordialoghandler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/errordialoghandler.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/audiosource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/audiosource.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/audiosource.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/audiosourcestereoproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/audiosourcestereoproxy.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/audiosourcestereoproxy.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/metadatasourcetaglib.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/metadatasourcetaglib.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/metadatasourcetaglib.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsource.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsource.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourceproviderregistry.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceproviderregistry.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourceproviderregistry.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourceproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceproxy.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourceproxy.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/controlwidgetconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/controlwidgetconnection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/controlwidgetconnection.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wbasewidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbasewidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wbasewidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wwidgetgroup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidgetgroup.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wwidgetgroup.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wwidgetstack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidgetstack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wwidgetstack.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wsizeawarestack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsizeawarestack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wsizeawarestack.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlabel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wlabel.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wtracktext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktext.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wtracktext.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wnumber.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumber.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wnumber.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wbeatspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbeatspinbox.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wbeatspinbox.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wnumberdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberdb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wnumberdb.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wnumberpos.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberpos.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wnumberpos.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wnumberrate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberrate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wnumberrate.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wknob.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wknob.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wknobcomposed.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wknobcomposed.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wdisplay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wdisplay.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wdisplay.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wvumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wvumeter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wvumeter.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wpushbutton.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wpushbutton.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectpushbutton.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectpushbutton.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wslidercomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wslidercomposed.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wslidercomposed.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wstatuslight.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wstatuslight.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wstatuslight.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/woverview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverview.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/woverview.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/woverviewlmh.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewlmh.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/woverviewlmh.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/woverviewhsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewhsv.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/woverviewhsv.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/woverviewrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewrgb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/woverviewrgb.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wspinny.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wspinny.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wspinny.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wskincolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wskincolor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wskincolor.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wsearchlineedit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsearchlineedit.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wsearchlineedit.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wpixmapstore.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wpixmapstore.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wpixmapstore.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/paintable.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/paintable.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/paintable.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wimagestore.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wimagestore.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wimagestore.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/hexspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/hexspinbox.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/hexspinbox.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wtrackproperty.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtrackproperty.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wtrackproperty.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wstarrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wstarrating.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wstarrating.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectchain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectchain.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffect.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffect.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectselector.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectselector.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectselector.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectparameter.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectparameterknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterknob.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectparameterknob.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectparameterknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterknobcomposed.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectparameterknobcomposed.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectbuttonparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectbuttonparameter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectbuttonparameter.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/weffectparameterbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterbase.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/weffectparameterbase.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wtime.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtime.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wtime.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wrecordingduration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wrecordingduration.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wrecordingduration.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wkey.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wkey.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wbattery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbattery.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wbattery.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcombobox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcombobox.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcombobox.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wsplitter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsplitter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wsplitter.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcoverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverart.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcoverart.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcoverartlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverartlabel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcoverartlabel.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcoverartmenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverartmenu.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcoverartmenu.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcolorpicker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcolorpicker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcolorpicker.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcolorpickeraction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcolorpickeraction.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcolorpickeraction.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wcuemenupopup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcuemenupopup.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wcuemenupopup.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wsingletoncontainer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsingletoncontainer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wsingletoncontainer.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wmainmenubar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wmainmenubar.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wmainmenubar.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/tagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/tagfetcher.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/tagfetcher.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/gzip.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/gzip.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/gzip.cpp" + }, + { + "command": "gcc -o osx64_build/src/musicbrainz/crc.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/crc.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/crc.c" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/chromaprinter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/chromaprinter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/chromaprinter.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/musicbrainz.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/musicbrainz.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/musicbrainz.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/musicbrainzxml.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/musicbrainzxml.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/musicbrainzxml.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/web/acoustidlookuptask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/web/acoustidlookuptask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/web/acoustidlookuptask.cpp" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/web/musicbrainzrecordingstask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/web/musicbrainzrecordingstask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/musicbrainz/web/musicbrainzrecordingstask.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wtracktableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktableview.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wtracktableview.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wtracktableviewheader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktableviewheader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wtracktableviewheader.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wlibrarysidebar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarysidebar.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wlibrarysidebar.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wlibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrary.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wlibrary.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wlibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarytableview.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wlibrarytableview.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wanalysislibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wanalysislibrarytableview.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wanalysislibrarytableview.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wlibrarytextbrowser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarytextbrowser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wlibrarytextbrowser.cpp" + }, + { + "command": "g++ -o osx64_build/src/database/mixxxdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/database/mixxxdb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/database/mixxxdb.cpp" + }, + { + "command": "g++ -o osx64_build/src/database/schemamanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/database/schemamanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/database/schemamanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/trackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackcollection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/trackcollection.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/trackcollectionmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackcollectionmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/trackcollectionmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/externaltrackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/externaltrackcollection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/externaltrackcollection.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/basesqltablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/basesqltablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/basesqltablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/basetrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/basetrackcache.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/basetrackcache.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/columncache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/columncache.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/columncache.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/librarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/librarytablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/librarytablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/searchquery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/searchquery.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/searchquery.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/searchqueryparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/searchqueryparser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/searchqueryparser.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/analysislibrarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/analysislibrarytablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/analysislibrarytablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/missingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/missingtablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/missingtablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/hiddentablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/hiddentablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/hiddentablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/proxytrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/proxytrackmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/proxytrackmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/coverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverart.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/coverart.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/coverartcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartcache.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/coverartcache.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/coverartutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartutils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/coverartutils.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/crate/cratestorage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratestorage.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/crate/cratestorage.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/crate/cratefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratefeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/crate/cratefeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/crate/cratefeaturehelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratefeaturehelper.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/crate/cratefeaturehelper.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/crate/cratetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratetablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/crate/cratetablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/playlisttablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/playlisttablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/playlisttablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/libraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/libraryfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/libraryfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/analysisfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/analysisfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/analysisfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/autodjfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/autodjfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/autodj/autodjfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/autodjprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/autodjprocessor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/autodj/autodjprocessor.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/directorydao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/directorydao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/directorydao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/mixxxlibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/mixxxlibraryfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/mixxxlibraryfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/baseplaylistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseplaylistfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/baseplaylistfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/playlistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/playlistfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/playlistfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/setlogfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/setlogfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/setlogfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/dlgautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/dlgautodj.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/autodj/dlgautodj.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlganalysis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlganalysis.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlganalysis.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlgcoverartfullsize.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgcoverartfullsize.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlgcoverartfullsize.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlghidden.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlghidden.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlghidden.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlgmissing.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgmissing.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlgmissing.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlgtagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtagfetcher.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlgtagfetcher.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlgtrackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtrackinfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlgtrackinfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dlgtrackmetadataexport.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtrackmetadataexport.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dlgtrackmetadataexport.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/browse/browsetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsetablemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/browse/browsetablemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/browse/browsethread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsethread.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/browse/browsethread.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/browse/browsefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsefeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/browse/browsefeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/browse/foldertreemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/foldertreemodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/browse/foldertreemodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/export/trackexportdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportdlg.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/export/trackexportdlg.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/export/trackexportwizard.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportwizard.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/export/trackexportwizard.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/export/trackexportworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportworker.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/export/trackexportworker.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/recording/recordingfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/recording/recordingfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/recording/recordingfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/recording/dlgrecording.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/recording/dlgrecording.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/recording/dlgrecording.cpp" + }, + { + "command": "g++ -o osx64_build/src/recording/recordingmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/recording/recordingmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/recording/recordingmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/enginerecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginerecord.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/enginerecord.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/baseexternallibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternallibraryfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/baseexternallibraryfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/baseexternaltrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternaltrackmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/baseexternaltrackmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/baseexternalplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternalplaylistmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/baseexternalplaylistmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/rhythmbox/rhythmboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rhythmbox/rhythmboxfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/rhythmbox/rhythmboxfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/banshee/bansheefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheefeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/banshee/bansheefeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/banshee/bansheeplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheeplaylistmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/banshee/bansheeplaylistmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/banshee/bansheedbconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheedbconnection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/banshee/bansheedbconnection.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/itunes/itunesfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/itunes/itunesfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/itunes/itunesfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/traktor/traktorfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/traktor/traktorfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/traktor/traktorfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/serato/seratofeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/serato/seratofeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/serato/seratofeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/serato/seratoplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/serato/seratoplaylistmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/serato/seratoplaylistmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/rekordbox/rekordboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordboxfeature.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/rekordbox/rekordboxfeature.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/rekordbox/rekordbox_pdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordbox_pdb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/rekordbox/rekordbox_pdb.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/rekordbox/rekordbox_anlz.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordbox_anlz.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/rekordbox/rekordbox_anlz.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/sidebarmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/sidebarmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/sidebarmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/library.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/library.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/library.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/libraryscanner.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/libraryscanner.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/scanner/libraryscanner.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/libraryscannerdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/libraryscannerdlg.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/scanner/libraryscannerdlg.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/scannertask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/scannertask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/scanner/scannertask.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/importfilestask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/importfilestask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/scanner/importfilestask.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/recursivescandirectorytask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/recursivescandirectorytask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/scanner/recursivescandirectorytask.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/cuedao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/cuedao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/cuedao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/trackdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/trackdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/trackdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/playlistdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/playlistdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/playlistdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/libraryhashdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/libraryhashdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/libraryhashdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/settingsdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/settingsdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/settingsdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/analysisdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/analysisdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/analysisdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/dao/autodjcratesdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/autodjcratesdao.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/dao/autodjcratesdao.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/librarycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/librarycontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/librarycontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/songdownloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/songdownloader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/songdownloader.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/starrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/starrating.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/starrating.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/stardelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/stardelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/stardelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/stareditor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/stareditor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/stareditor.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/bpmdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/bpmdelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/bpmdelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/previewbuttondelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/previewbuttondelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/previewbuttondelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/colordelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/colordelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/colordelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/coverartdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartdelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/coverartdelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/locationdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/locationdelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/locationdelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/tableitemdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/tableitemdelegate.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/tableitemdelegate.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/treeitemmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/treeitemmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/treeitemmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/treeitem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/treeitem.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/treeitem.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/parser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/parser.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/parserpls.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parserpls.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/parserpls.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/parserm3u.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parserm3u.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/parserm3u.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/parsercsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parsercsv.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/parsercsv.cpp" + }, + { + "command": "g++ -o osx64_build/src/library/trackloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackloader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/library/trackloader.cpp" + }, + { + "command": "g++ -o osx64_build/src/network/jsonwebtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/network/jsonwebtask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/network/jsonwebtask.cpp" + }, + { + "command": "g++ -o osx64_build/src/network/webtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/network/webtask.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/network/webtask.cpp" + }, + { + "command": "g++ -o osx64_build/src/widget/wwaveformviewer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwaveformviewer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/widget/wwaveformviewer.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/sharedglcontext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/sharedglcontext.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/sharedglcontext.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/waveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveform.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/waveform.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/waveformfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformfactory.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/waveformfactory.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/waveformwidgetfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformwidgetfactory.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/waveformwidgetfactory.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/vsyncthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/vsyncthread.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/vsyncthread.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/guitick.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/guitick.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/guitick.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/visualsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/visualsmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/visualsmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/visualplayposition.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/visualplayposition.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/visualplayposition.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformwidgetrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformwidgetrenderer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformwidgetrenderer.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererabstract.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererabstract.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererabstract.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderbackground.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderbackground.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrenderbackground.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendermark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendermark.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendermark.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendermarkrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendermarkrange.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendermarkrange.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderbeat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderbeat.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrenderbeat.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererendoftrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererendoftrack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererendoftrack.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererpreroll.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererpreroll.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererpreroll.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererfilteredsignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererfilteredsignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererhsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererhsv.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererhsv.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererrgb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrendererrgb.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/qtwaveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/qtwaveformrenderersimplesignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtwaveformrenderersimplesignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/qtwaveformrenderersimplesignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/qtvsynctestrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtvsynctestrenderer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/qtvsynctestrenderer.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformsignalcolors.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformsignalcolors.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformsignalcolors.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderersignalbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderersignalbase.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformrenderersignalbase.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformmark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmark.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformmark.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformmarkset.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmarkset.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformmarkset.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/waveformmarkrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmarkrange.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/waveformmarkrange.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrenderersimplesignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrenderersimplesignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/glwaveformrenderersimplesignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrendererrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrendererrgb.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/glwaveformrendererrgb.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrendererfilteredsignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/glwaveformrendererfilteredsignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/glslwaveformrenderersignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glslwaveformrenderersignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/glslwaveformrenderersignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/glvsynctestrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glvsynctestrenderer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/renderers/glvsynctestrenderer.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/waveformmarklabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformmarklabel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/waveformmarklabel.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/waveformwidgetabstract.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/waveformwidgetabstract.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/waveformwidgetabstract.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/emptywaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/emptywaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/emptywaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/softwarewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/softwarewaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/softwarewaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/hsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/hsvwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/hsvwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/rgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/rgbwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/rgbwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/qthsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qthsvwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/qthsvwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/qtrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtrgbwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/qtrgbwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/qtwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/qtwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/qtsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtsimplewaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/qtsimplewaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/qtvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtvsynctestwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/qtvsynctestwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/glwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/glwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/glsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glsimplewaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/glsimplewaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/glvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glvsynctestwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/glvsynctestwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/glslwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glslwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/glslwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/glrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glrgbwaveformwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/waveform/widgets/glrgbwaveformwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/imginvert.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imginvert.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/imginvert.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/imgloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imgloader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/imgloader.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/imgcolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imgcolor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/imgcolor.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/skinloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/skinloader.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/skinloader.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/legacyskinparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/legacyskinparser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/legacyskinparser.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/colorschemeparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/colorschemeparser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/colorschemeparser.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/tooltips.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/tooltips.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/tooltips.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/skincontext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/skincontext.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/skincontext.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/svgparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/svgparser.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/svgparser.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/pixmapsource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/pixmapsource.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/pixmapsource.cpp" + }, + { + "command": "g++ -o osx64_build/src/skin/launchimage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/launchimage.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/skin/launchimage.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/beatfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatfactory.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/beatfactory.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/beatgrid.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatgrid.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/beatgrid.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/beatmap.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatmap.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/beatmap.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/beatutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatutils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/beatutils.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/beats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beats.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/beats.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/bpm.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/bpm.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/bpm.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/cue.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/cue.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/cue.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/cueinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/cueinfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/cueinfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/keyfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keyfactory.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/keyfactory.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/keys.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keys.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/keys.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/keyutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keyutils.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/keyutils.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/playcounter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/playcounter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/playcounter.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/replaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/replaygain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/replaygain.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/serato/markers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/serato/markers.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/serato/markers.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/serato/markers2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/serato/markers2.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/serato/markers2.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/track.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/track.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/track.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/globaltrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/globaltrackcache.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/globaltrackcache.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackfile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackfile.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackfile.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackmetadata.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackmetadata.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackmetadata.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackmetadatataglib.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackmetadatataglib.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackmetadatataglib.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/tracknumbers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/tracknumbers.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/tracknumbers.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/albuminfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/albuminfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/albuminfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackinfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackinfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackrecord.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackrecord.cpp" + }, + { + "command": "g++ -o osx64_build/src/track/trackref.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackref.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/track/trackref.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/auxiliary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/auxiliary.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/auxiliary.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/baseplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/baseplayer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/baseplayer.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/basetrackplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/basetrackplayer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/basetrackplayer.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/deck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/deck.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/deck.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/microphone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/microphone.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/microphone.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/playerinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/playerinfo.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/playerinfo.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/playermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/playermanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/playermanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/previewdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/previewdeck.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/previewdeck.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/sampler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/sampler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/sampler.cpp" + }, + { + "command": "g++ -o osx64_build/src/mixer/samplerbank.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/samplerbank.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/mixer/samplerbank.cpp" + }, + { + "command": "g++ -o osx64_build/src/soundio/sounddevice.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddevice.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/sounddevice.cpp" + }, + { + "command": "g++ -o osx64_build/src/soundio/sounddevicenetwork.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddevicenetwork.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/sounddevicenetwork.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/enginenetworkstream.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginenetworkstream.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/enginenetworkstream.cpp" + }, + { + "command": "g++ -o osx64_build/src/soundio/soundmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/soundmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/soundio/soundmanagerconfig.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanagerconfig.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/soundmanagerconfig.cpp" + }, + { + "command": "g++ -o osx64_build/src/soundio/soundmanagerutil.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanagerutil.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/soundmanagerutil.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoder.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoder.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderbroadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderbroadcastsettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderbroadcastsettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderflacsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderflacsettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderflacsettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encodermp3.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodermp3.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encodermp3.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encodermp3settings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodermp3settings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encodermp3settings.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encodersndfileflac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodersndfileflac.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encodersndfileflac.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encodervorbis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodervorbis.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encodervorbis.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encodervorbissettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodervorbissettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encodervorbissettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderwave.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderwave.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderwave.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderwavesettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderwavesettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderwavesettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderopussettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderopussettings.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderopussettings.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/sleepableqthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sleepableqthread.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/sleepableqthread.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/statsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/statsmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/statsmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/stat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/stat.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/stat.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/statmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/statmodel.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/statmodel.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/dnd.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/dnd.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/dnd.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/duration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/duration.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/duration.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/time.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/time.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/time.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/timer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/timer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/timer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/performancetimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/performancetimer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/performancetimer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/threadcputimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/threadcputimer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/threadcputimer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/version.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/version.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/version.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/rlimit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/rlimit.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/rlimit.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/battery/battery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/battery/battery.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/battery/battery.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/valuetransformer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/valuetransformer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/valuetransformer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/sandbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sandbox.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/sandbox.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/file.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/file.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/file.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/mac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/mac.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/mac.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/task.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/task.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/task.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/experiment.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/experiment.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/experiment.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/xml.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/xml.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/xml.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/tapfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/tapfilter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/tapfilter.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/movinginterquartilemean.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/movinginterquartilemean.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/movinginterquartilemean.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/cache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/cache.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/cache.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/console.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/console.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/console.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/color/color.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/color/color.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/color/color.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/dbconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/dbconnection.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/dbconnectionpool.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpool.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/dbconnectionpool.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/dbconnectionpooler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpooler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/dbconnectionpooler.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/dbconnectionpooled.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpooled.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/dbconnectionpooled.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/dbid.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbid.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/dbid.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/fwdsqlquery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/fwdsqlquery.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/fwdsqlquery.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/fwdsqlqueryselectresult.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/fwdsqlqueryselectresult.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/fwdsqlqueryselectresult.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/sqllikewildcardescaper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqllikewildcardescaper.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/sqllikewildcardescaper.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/sqlqueryfinisher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqlqueryfinisher.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/sqlqueryfinisher.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/sqlstringformatter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqlstringformatter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/sqlstringformatter.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/db/sqltransaction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqltransaction.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/db/sqltransaction.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/sample.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sample.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/sample.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/samplebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/samplebuffer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/samplebuffer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/readaheadsamplebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/readaheadsamplebuffer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/readaheadsamplebuffer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/rotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/rotary.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/rotary.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/logger.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/logger.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/logger.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/logging.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/logging.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/logging.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/cmdlineargs.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/cmdlineargs.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/cmdlineargs.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/audiosignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/audiosignal.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/audiosignal.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/widgethider.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/widgethider.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/widgethider.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/autohidpi.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/autohidpi.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/autohidpi.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/screensaver.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/screensaver.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/screensaver.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/indexrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/indexrange.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/indexrange.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/desktophelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/desktophelper.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/desktophelper.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/widgetrendertimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/widgetrendertimer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/widgetrendertimer.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/workerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/workerthread.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/workerthread.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/workerthreadscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/workerthreadscheduler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/workerthreadscheduler.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/color/predefinedcolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/color/predefinedcolor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/color/predefinedcolor.cpp" + }, + { + "command": "g++ -o osx64_build/src/proto/beats.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/beats.pb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/proto/beats.pb.cc" + }, + { + "command": "g++ -o osx64_build/src/proto/headers.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/headers.pb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/proto/headers.pb.cc" + }, + { + "command": "g++ -o osx64_build/src/proto/keys.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/keys.pb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/proto/keys.pb.cc" + }, + { + "command": "g++ -o osx64_build/src/proto/skin.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/skin.pb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/proto/skin.pb.cc" + }, + { + "command": "g++ -o osx64_build/src/proto/waveform.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/waveform.pb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/proto/waveform.pb.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalest.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/bufferscalers/enginebufferscalest.cpp" + }, + { + "command": "g++ -o osx64_build/lib/replaygain/replaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/replaygain/replaygain.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/replaygain/replaygain.cpp" + }, + { + "command": "gcc -o osx64_build/lib/libebur128/ebur128/ebur128.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/libebur128/ebur128/ebur128.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/libebur128/ebur128/ebur128.c" + }, + { + "command": "g++ -o osx64_build/src/soundio/sounddeviceportaudio.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddeviceportaudio.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/soundio/sounddeviceportaudio.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/portmidienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/portmidienumerator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/portmidienumerator.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/portmidicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/portmidicontroller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/midi/portmidicontroller.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourcesndfile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourcesndfile.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourcesndfile.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourceflac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceflac.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourceflac.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourceoggvorbis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceoggvorbis.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourceoggvorbis.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalerubberband.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalerubberband.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/bufferscalers/enginebufferscalerubberband.cpp" + }, + { + "command": "g++ -o osx64_build/lib/qtscript-bytearray/bytearrayclass.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qtscript-bytearray/bytearrayclass.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qtscript-bytearray/bytearrayclass.cpp" + }, + { + "command": "g++ -o osx64_build/lib/qtscript-bytearray/bytearrayprototype.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qtscript-bytearray/bytearrayprototype.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qtscript-bytearray/bytearrayprototype.cpp" + }, + { + "command": "g++ -o osx64_build/lib/reverb/Reverb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/reverb/Reverb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/reverb/Reverb.cc" + }, + { + "command": "gcc -o osx64_build/lib/portaudio/pa_ringbuffer.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/portaudio/pa_ringbuffer.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/portaudio/pa_ringbuffer.c" + }, + { + "command": "g++ -o lib/qm-dsp/base/Pitch.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/base/Pitch.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/base/Pitch.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/chromagram/Chromagram.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/chromagram/Chromagram.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/chromagram/Chromagram.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/chromagram/ConstantQ.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/chromagram/ConstantQ.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/chromagram/ConstantQ.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/keydetection/GetKeyMode.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/keydetection/GetKeyMode.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/keydetection/GetKeyMode.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/onsets/DetectionFunction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/onsets/DetectionFunction.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/onsets/DetectionFunction.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/onsets/PeakPicking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/onsets/PeakPicking.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/onsets/PeakPicking.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/rateconversion/Decimator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/rateconversion/Decimator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/rateconversion/Decimator.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/DFProcess.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/DFProcess.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/signalconditioning/DFProcess.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/FiltFilt.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/FiltFilt.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/signalconditioning/FiltFilt.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/Filter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/Filter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/signalconditioning/Filter.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/Framer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/Framer.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/signalconditioning/Framer.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tempotracking/DownBeat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/DownBeat.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tempotracking/DownBeat.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tempotracking/TempoTrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/TempoTrack.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tempotracking/TempoTrack.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tempotracking/TempoTrackV2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/TempoTrackV2.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tempotracking/TempoTrackV2.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tonal/TCSgram.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/TCSgram.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tonal/TCSgram.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/tonal/TonalEstimator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/TonalEstimator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/tonal/TonalEstimator.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/dsp/transforms/FFT.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/transforms/FFT.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/dsp/transforms/FFT.cpp" + }, + { + "command": "gcc -o lib/qm-dsp/ext/kissfft/kiss_fft.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/ext/kissfft/kiss_fft.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/ext/kissfft/kiss_fft.c" + }, + { + "command": "gcc -o lib/qm-dsp/ext/kissfft/tools/kiss_fftr.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/ext/kissfft/tools/kiss_fftr.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/ext/kissfft/tools/kiss_fftr.c" + }, + { + "command": "g++ -o lib/qm-dsp/maths/Correlation.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/Correlation.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/maths/Correlation.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/maths/KLDivergence.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/KLDivergence.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/maths/KLDivergence.cpp" + }, + { + "command": "g++ -o lib/qm-dsp/maths/MathUtilities.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/MathUtilities.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/qm-dsp/maths/MathUtilities.cpp" + }, + { + "command": "g++ -o osx64_build/lib/kaitai/kaitaistream.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/kaitai/kaitaistream.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/kaitai/kaitaistream.cpp" + }, + { + "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/mp3guessenc.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/mp3guessenc.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/mp3guessenc-0.27.4/mp3guessenc.c" + }, + { + "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/tags.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/tags.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/mp3guessenc-0.27.4/tags.c" + }, + { + "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/decode.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/decode.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/mp3guessenc-0.27.4/decode.c" + }, + { + "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/bit_utils.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/bit_utils.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/mp3guessenc-0.27.4/bit_utils.c" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourcecoreaudio.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourcecoreaudio.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourcecoreaudio.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/v1/legacyaudiosourceadapter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/v1/legacyaudiosourceadapter.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/v1/legacyaudiosourceadapter.cpp" + }, + { + "command": "g++ -o osx64_build/lib/apple/CAStreamBasicDescription.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/apple/CAStreamBasicDescription.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/apple/CAStreamBasicDescription.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/hid/hidcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidcontroller.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/hid/hidcontroller.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/hid/hidenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidenumerator.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/hid/hidenumerator.cpp" + }, + { + "command": "g++ -o osx64_build/src/controllers/hid/hidcontrollerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidcontrollerpresetfilehandler.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/controllers/hid/hidcontrollerpresetfilehandler.cpp" + }, + { + "command": "gcc -o osx64_build/lib/hidapi-0.8.0-rc1/mac/hid.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/hidapi-0.8.0-rc1/mac/hid.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/hidapi-0.8.0-rc1/mac/hid.c" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/vinylcontrol.cpp" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolxwax.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolxwax.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/vinylcontrolxwax.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefvinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefvinyl.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefvinyl.cpp" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolsignalwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolsignalwidget.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/vinylcontrolsignalwidget.cpp" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/vinylcontrolmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolprocessor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/vinylcontrolprocessor.cpp" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/steadypitch.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/steadypitch.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/vinylcontrol/steadypitch.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/vinylcontrolcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/vinylcontrolcontrol.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/controls/vinylcontrolcontrol.cpp" + }, + { + "command": "gcc -o osx64_build/lib/xwax/timecoder.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/xwax/timecoder.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/xwax/timecoder.c" + }, + { + "command": "gcc -o osx64_build/lib/xwax/lut.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/xwax/lut.c", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "lib/xwax/lut.c" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefbroadcast.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefbroadcast.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgprefbroadcast.cpp" + }, + { + "command": "g++ -o osx64_build/src/broadcast/broadcastmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/broadcast/broadcastmanager.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/broadcast/broadcastmanager.cpp" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/shoutconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/shoutconnection.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/engine/sidechain/shoutconnection.cpp" + }, + { + "command": "g++ -o osx64_build/src/sources/soundsourceopus.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceopus.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/sources/soundsourceopus.cpp" + }, + { + "command": "g++ -o osx64_build/src/encoder/encoderopus.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderopus.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/encoder/encoderopus.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/lv2/lv2backend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2backend.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/lv2/lv2backend.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/lv2/lv2effectprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2effectprocessor.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/lv2/lv2effectprocessor.cpp" + }, + { + "command": "g++ -o osx64_build/src/effects/lv2/lv2manifest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2manifest.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/effects/lv2/lv2manifest.cpp" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreflv2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreflv2.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/preferences/dialog/dlgpreflv2.cpp" + }, + { + "command": "g++ -o osx64_build/src/util/battery/batterymac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/battery/batterymac.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/util/battery/batterymac.cpp" + }, + { + "command": "g++ -o osx64_build/src/control/moc_control.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_control.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_control.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlaudiotaperpot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlaudiotaperpot.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlaudiotaperpot.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controleffectknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controleffectknob.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controleffectknob.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlindicator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlindicator.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlindicator.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controllinpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controllinpotmeter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controllinpotmeter.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controllogpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controllogpotmeter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controllogpotmeter.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlobject.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlobject.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlobjectscript.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlobjectscript.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlobjectscript.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlpotmeter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlpotmeter.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlproxy.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlproxy.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlpushbutton.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlpushbutton.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlttrotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlttrotary.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlttrotary.cc" + }, + { + "command": "g++ -o osx64_build/src/control/moc_controlencoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlencoder.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/control/moc_controlencoder.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_dlgcontrollerlearning.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgcontrollerlearning.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_dlgcontrollerlearning.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_dlgprefcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgprefcontroller.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_dlgprefcontroller.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_dlgprefcontrollers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgprefcontrollers.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_dlgprefcontrollers.cc" + }, + { + "command": "g++ -o osx64_build/src/dialog/moc_dlgabout.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/dialog/moc_dlgabout.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/dialog/moc_dlgabout.cc" + }, + { + "command": "g++ -o osx64_build/src/dialog/moc_dlgdevelopertools.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/dialog/moc_dlgdevelopertools.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/dialog/moc_dlgdevelopertools.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefautodj.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefautodj.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefdeck.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefdeck.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefeffects.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefeffects.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefeffects.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefeq.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefeq.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefeq.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreferences.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreferences.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgpreferences.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefinterface.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefinterface.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefinterface.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreflibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreflibrary.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgpreflibrary.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefrecord.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefrecord.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefsound.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefsound.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefsound.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefsounditem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefsounditem.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefsounditem.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefwaveform.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefwaveform.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefbeats.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefbeats.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefkey.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefkey.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_settingsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_settingsmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_settingsmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_broadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastsettings.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_broadcastsettings.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_broadcastsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastsettingsmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_broadcastsettingsmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_effectsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_effectsettingsmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_effectsettingsmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_broadcastprofile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastprofile.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_broadcastprofile.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/moc_dlgpreferencepage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_dlgpreferencepage.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/moc_dlgpreferencepage.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchain.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectchain.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effect.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effect.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectparameter.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectrack.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectrack.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectchainslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchainslot.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectchainslot.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectslot.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectslot.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectparameterslotbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameterslotbase.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectparameterslotbase.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameterslot.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectparameterslot.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectbuttonparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectbuttonparameterslot.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectbuttonparameterslot.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectsmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectsmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectchainmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchainmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectchainmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/moc_effectsbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectsbackend.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/moc_effectsbackend.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/builtin/moc_builtinbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/builtin/moc_builtinbackend.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/builtin/moc_builtinbackend.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/moc_synccontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sync/moc_synccontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/sync/moc_synccontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/sync/moc_internalclock.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sync/moc_internalclock.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/sync/moc_internalclock.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_engineworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineworker.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_engineworker.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_engineworkerscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineworkerscheduler.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_engineworkerscheduler.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_enginebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginebuffer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_enginebuffer.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscale.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscale.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscale.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/moc_engineaux.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_engineaux.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/channels/moc_engineaux.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/moc_enginechannel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginechannel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/channels/moc_enginechannel.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/moc_enginedeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginedeck.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/channels/moc_enginedeck.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/channels/moc_enginemicrophone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginemicrophone.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/channels/moc_enginemicrophone.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbiquad1.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbiquad1.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterbiquad1.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefiltermoogladder4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefiltermoogladder4.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefiltermoogladder4.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbessel4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbessel4.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterbessel4.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbessel8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbessel8.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterbessel8.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbutterworth4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbutterworth4.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterbutterworth4.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbutterworth8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbutterworth8.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterbutterworth8.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/filters/moc_enginefilter.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_engineobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineobject.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_engineobject.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_enginemaster.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginemaster.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_enginemaster.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_enginedelay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginedelay.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_enginedelay.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_enginevumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginevumeter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_enginevumeter.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/moc_enginesidechain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_enginesidechain.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/sidechain/moc_enginesidechain.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_bpmcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_bpmcontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_bpmcontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_clockcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_clockcontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_clockcontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_cuecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_cuecontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_cuecontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_enginecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_enginecontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_enginecontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_keycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_keycontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_keycontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_loopingcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_loopingcontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_loopingcontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_quantizecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_quantizecontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_quantizecontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_ratecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_ratecontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_ratecontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/moc_enginetalkoverducking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginetalkoverducking.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/moc_enginetalkoverducking.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/cachingreader/moc_cachingreader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/cachingreader/moc_cachingreader.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/cachingreader/moc_cachingreader.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/cachingreader/moc_cachingreaderworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/cachingreader/moc_cachingreaderworker.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/cachingreader/moc_cachingreaderworker.cc" + }, + { + "command": "g++ -o osx64_build/src/analyzer/moc_trackanalysisscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/analyzer/moc_trackanalysisscheduler.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/analyzer/moc_trackanalysisscheduler.cc" + }, + { + "command": "g++ -o osx64_build/src/analyzer/moc_analyzerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/analyzer/moc_analyzerthread.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/analyzer/moc_analyzerthread.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controller.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controller.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllerengine.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerengine.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllerengine.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllerenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerenumerator.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllerenumerator.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllerlearningeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerlearningeventfilter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllerlearningeventfilter.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllermanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllermanager.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controlpickermenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controlpickermenu.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controlpickermenu.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllermappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllermappingtablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllermappingtablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controllerinputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerinputmappingtablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controllerinputmappingtablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/moc_controldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/delegates/moc_controldelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/delegates/moc_controldelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/delegates/moc_midioptionsdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/delegates/moc_midioptionsdelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/delegates/moc_midioptionsdelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/moc_midicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midicontroller.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/midi/moc_midicontroller.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/moc_midienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midienumerator.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/midi/moc_midienumerator.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/moc_midioutputhandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midioutputhandler.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/midi/moc_midioutputhandler.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/moc_colorjsproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_colorjsproxy.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/moc_colorjsproxy.cc" + }, + { + "command": "g++ -o osx64_build/src/moc_mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_mixxx.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/moc_mixxx.cc" + }, + { + "command": "g++ -o osx64_build/src/moc_mixxxapplication.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_mixxxapplication.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/moc_mixxxapplication.cc" + }, + { + "command": "g++ -o osx64_build/src/moc_errordialoghandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_errordialoghandler.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/moc_errordialoghandler.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_controlwidgetconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_controlwidgetconnection.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_controlwidgetconnection.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wwidgetgroup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidgetgroup.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wwidgetgroup.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wwidgetstack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidgetstack.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wwidgetstack.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wsizeawarestack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsizeawarestack.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wsizeawarestack.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlabel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wlabel.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wtracktext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktext.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wtracktext.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wnumber.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumber.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wnumber.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wbeatspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wbeatspinbox.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wbeatspinbox.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wnumberdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberdb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wnumberdb.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wnumberpos.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberpos.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wnumberpos.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wnumberrate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberrate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wnumberrate.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wknob.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wknob.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wknobcomposed.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wknobcomposed.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wdisplay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wdisplay.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wdisplay.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wvumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wvumeter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wvumeter.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wpushbutton.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wpushbutton.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectpushbutton.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectpushbutton.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wslidercomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wslidercomposed.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wslidercomposed.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wstatuslight.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wstatuslight.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wstatuslight.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_woverview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_woverview.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_woverview.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wspinny.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wspinny.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wspinny.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wsearchlineedit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsearchlineedit.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wsearchlineedit.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wtrackproperty.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtrackproperty.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wtrackproperty.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wstarrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wstarrating.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wstarrating.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectchain.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectchain.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffect.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffect.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectselector.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectselector.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectselector.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectparameter.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectparameterknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterknob.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectparameterknob.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectparameterknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterknobcomposed.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectparameterknobcomposed.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectbuttonparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectbuttonparameter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectbuttonparameter.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_weffectparameterbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterbase.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_weffectparameterbase.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wtime.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtime.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wtime.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wrecordingduration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wrecordingduration.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wrecordingduration.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wkey.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wkey.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wbattery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wbattery.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wbattery.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcombobox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcombobox.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcombobox.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wsplitter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsplitter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wsplitter.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcoverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverart.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcoverart.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcoverartlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverartlabel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcoverartlabel.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcoverartmenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverartmenu.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcoverartmenu.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcolorpicker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcolorpicker.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcolorpicker.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcolorpickeraction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcolorpickeraction.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcolorpickeraction.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wcuemenupopup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcuemenupopup.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wcuemenupopup.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wsingletoncontainer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsingletoncontainer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wsingletoncontainer.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wmainmenubar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wmainmenubar.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wmainmenubar.cc" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/moc_tagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/moc_tagfetcher.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/musicbrainz/moc_tagfetcher.cc" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/moc_chromaprinter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/moc_chromaprinter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/musicbrainz/moc_chromaprinter.cc" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.cc" + }, + { + "command": "g++ -o osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wtracktableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktableview.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wtracktableview.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wtracktableviewheader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktableviewheader.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wtracktableviewheader.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wlibrarysidebar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarysidebar.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wlibrarysidebar.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wlibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrary.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wlibrary.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wlibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarytableview.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wlibrarytableview.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wlibrarytextbrowser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarytextbrowser.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wlibrarytextbrowser.cc" + }, + { + "command": "g++ -o osx64_build/src/database/moc_mixxxdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/database/moc_mixxxdb.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/database/moc_mixxxdb.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_trackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackcollection.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_trackcollection.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_trackcollectionmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackcollectionmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_trackcollectionmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_externaltrackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_externaltrackcollection.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_externaltrackcollection.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_basesqltablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_basesqltablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_basesqltablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_basetrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_basetrackcache.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_basetrackcache.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_columncache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_columncache.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_columncache.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_librarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_librarytablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_librarytablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_analysislibrarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_analysislibrarytablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_analysislibrarytablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_missingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_missingtablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_missingtablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_hiddentablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_hiddentablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_hiddentablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_coverartcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_coverartcache.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_coverartcache.cc" + }, + { + "command": "g++ -o osx64_build/src/library/crate/moc_cratefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratefeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/crate/moc_cratefeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/crate/moc_cratefeaturehelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratefeaturehelper.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/crate/moc_cratefeaturehelper.cc" + }, + { + "command": "g++ -o osx64_build/src/library/crate/moc_cratetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratetablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/crate/moc_cratetablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_playlisttablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_playlisttablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_playlisttablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_libraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_libraryfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_libraryfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_analysisfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_analysisfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_analysisfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/moc_autodjfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_autodjfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/autodj/moc_autodjfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/moc_autodjprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_autodjprocessor.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/autodj/moc_autodjprocessor.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_mixxxlibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_mixxxlibraryfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_mixxxlibraryfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_baseplaylistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseplaylistfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_baseplaylistfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_playlistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_playlistfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_playlistfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_setlogfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_setlogfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_setlogfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/autodj/moc_dlgautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_dlgautodj.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/autodj/moc_dlgautodj.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlganalysis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlganalysis.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlganalysis.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlgcoverartfullsize.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgcoverartfullsize.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlgcoverartfullsize.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlghidden.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlghidden.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlghidden.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlgmissing.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgmissing.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlgmissing.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlgtagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtagfetcher.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlgtagfetcher.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlgtrackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtrackinfo.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlgtrackinfo.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_dlgtrackmetadataexport.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtrackmetadataexport.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_dlgtrackmetadataexport.cc" + }, + { + "command": "g++ -o osx64_build/src/library/browse/moc_browsetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsetablemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/browse/moc_browsetablemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/browse/moc_browsethread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsethread.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/browse/moc_browsethread.cc" + }, + { + "command": "g++ -o osx64_build/src/library/browse/moc_browsefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsefeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/browse/moc_browsefeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/browse/moc_foldertreemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_foldertreemodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/browse/moc_foldertreemodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/export/moc_trackexportdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportdlg.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/export/moc_trackexportdlg.cc" + }, + { + "command": "g++ -o osx64_build/src/library/export/moc_trackexportwizard.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportwizard.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/export/moc_trackexportwizard.cc" + }, + { + "command": "g++ -o osx64_build/src/library/export/moc_trackexportworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportworker.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/export/moc_trackexportworker.cc" + }, + { + "command": "g++ -o osx64_build/src/library/recording/moc_recordingfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/recording/moc_recordingfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/recording/moc_recordingfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/recording/moc_dlgrecording.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/recording/moc_dlgrecording.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/recording/moc_dlgrecording.cc" + }, + { + "command": "g++ -o osx64_build/src/recording/moc_recordingmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/recording/moc_recordingmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/recording/moc_recordingmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/moc_enginerecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_enginerecord.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/sidechain/moc_enginerecord.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_baseexternallibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternallibraryfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_baseexternallibraryfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_baseexternaltrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternaltrackmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_baseexternaltrackmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_baseexternalplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternalplaylistmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_baseexternalplaylistmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/banshee/moc_bansheefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/banshee/moc_bansheefeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/banshee/moc_bansheefeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/banshee/moc_bansheeplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/banshee/moc_bansheeplaylistmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/banshee/moc_bansheeplaylistmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/itunes/moc_itunesfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/itunes/moc_itunesfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/itunes/moc_itunesfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/traktor/moc_traktorfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/traktor/moc_traktorfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/traktor/moc_traktorfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/serato/moc_seratofeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/serato/moc_seratofeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/serato/moc_seratofeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/rekordbox/moc_rekordboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/rekordbox/moc_rekordboxfeature.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/rekordbox/moc_rekordboxfeature.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_sidebarmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_sidebarmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_sidebarmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_library.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_library.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_library.cc" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/moc_libraryscanner.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_libraryscanner.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/scanner/moc_libraryscanner.cc" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/moc_libraryscannerdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_libraryscannerdlg.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/scanner/moc_libraryscannerdlg.cc" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/moc_scannertask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_scannertask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/scanner/moc_scannertask.cc" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/moc_importfilestask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_importfilestask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/scanner/moc_importfilestask.cc" + }, + { + "command": "g++ -o osx64_build/src/library/scanner/moc_recursivescandirectorytask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_recursivescandirectorytask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/scanner/moc_recursivescandirectorytask.cc" + }, + { + "command": "g++ -o osx64_build/src/library/dao/moc_trackdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_trackdao.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/dao/moc_trackdao.cc" + }, + { + "command": "g++ -o osx64_build/src/library/dao/moc_playlistdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_playlistdao.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/dao/moc_playlistdao.cc" + }, + { + "command": "g++ -o osx64_build/src/library/dao/moc_autodjcratesdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_autodjcratesdao.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/dao/moc_autodjcratesdao.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_librarycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_librarycontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_librarycontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_songdownloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_songdownloader.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_songdownloader.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_stardelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_stardelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_stardelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_stareditor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_stareditor.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_stareditor.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_bpmdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_bpmdelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_bpmdelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_previewbuttondelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_previewbuttondelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_previewbuttondelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_colordelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_colordelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_colordelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_coverartdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_coverartdelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_coverartdelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_locationdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_locationdelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_locationdelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_tableitemdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_tableitemdelegate.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_tableitemdelegate.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_treeitemmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_treeitemmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_treeitemmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_parserpls.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parserpls.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_parserpls.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_parserm3u.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parserm3u.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_parserm3u.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_parsercsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parsercsv.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_parsercsv.cc" + }, + { + "command": "g++ -o osx64_build/src/library/moc_trackloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackloader.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/library/moc_trackloader.cc" + }, + { + "command": "g++ -o osx64_build/src/network/moc_jsonwebtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/network/moc_jsonwebtask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/network/moc_jsonwebtask.cc" + }, + { + "command": "g++ -o osx64_build/src/network/moc_webtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/network/moc_webtask.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/network/moc_webtask.cc" + }, + { + "command": "g++ -o osx64_build/src/widget/moc_wwaveformviewer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwaveformviewer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/widget/moc_wwaveformviewer.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/moc_waveformwidgetfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_waveformwidgetfactory.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/moc_waveformwidgetfactory.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/moc_vsyncthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_vsyncthread.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/moc_vsyncthread.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/moc_visualplayposition.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_visualplayposition.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/moc_visualplayposition.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/moc_waveformrendermark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/renderers/moc_waveformrendermark.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/renderers/moc_waveformrendermark.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_emptywaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_emptywaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_emptywaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_qtwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_glwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_glwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_glvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glvsynctestwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_glvsynctestwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_glslwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glslwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_glslwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/skin/moc_legacyskinparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_legacyskinparser.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/skin/moc_legacyskinparser.cc" + }, + { + "command": "g++ -o osx64_build/src/skin/moc_tooltips.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_tooltips.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/skin/moc_tooltips.cc" + }, + { + "command": "g++ -o osx64_build/src/skin/moc_launchimage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_launchimage.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/skin/moc_launchimage.cc" + }, + { + "command": "g++ -o osx64_build/src/track/moc_beats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_beats.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/track/moc_beats.cc" + }, + { + "command": "g++ -o osx64_build/src/track/moc_cue.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_cue.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/track/moc_cue.cc" + }, + { + "command": "g++ -o osx64_build/src/track/moc_track.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_track.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/track/moc_track.cc" + }, + { + "command": "g++ -o osx64_build/src/track/moc_globaltrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_globaltrackcache.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/track/moc_globaltrackcache.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_auxiliary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_auxiliary.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_auxiliary.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_baseplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_baseplayer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_baseplayer.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_basetrackplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_basetrackplayer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_basetrackplayer.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_deck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_deck.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_deck.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_microphone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_microphone.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_microphone.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_playerinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_playerinfo.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_playerinfo.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_playermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_playermanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_playermanager.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_previewdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_previewdeck.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_previewdeck.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_sampler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_sampler.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_sampler.cc" + }, + { + "command": "g++ -o osx64_build/src/mixer/moc_samplerbank.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_samplerbank.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/mixer/moc_samplerbank.cc" + }, + { + "command": "g++ -o osx64_build/src/soundio/moc_sounddevicenetwork.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/soundio/moc_sounddevicenetwork.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/soundio/moc_sounddevicenetwork.cc" + }, + { + "command": "g++ -o osx64_build/src/soundio/moc_soundmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/soundio/moc_soundmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/soundio/moc_soundmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_sleepableqthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_sleepableqthread.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_sleepableqthread.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_statsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_statsmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_statsmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_statmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_statmodel.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_statmodel.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_timer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_timer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_timer.cc" + }, + { + "command": "g++ -o osx64_build/src/util/battery/moc_battery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/battery/moc_battery.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/battery/moc_battery.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_task.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_task.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_task.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_tapfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_tapfilter.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_tapfilter.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_widgethider.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_widgethider.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_widgethider.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_widgetrendertimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_widgetrendertimer.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_widgetrendertimer.cc" + }, + { + "command": "g++ -o osx64_build/src/util/moc_workerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_workerthread.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/util/moc_workerthread.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/moc_portmidienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_portmidienumerator.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/midi/moc_portmidienumerator.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/midi/moc_portmidicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_portmidicontroller.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/midi/moc_portmidicontroller.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.cc" + }, + { + "command": "g++ -o osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.cc" + }, + { + "command": "g++ -o osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.cc" + }, + { + "command": "g++ -o osx64_build/src/controllers/hid/moc_hidcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/hid/moc_hidcontroller.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/controllers/hid/moc_hidcontroller.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefvinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefvinyl.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefvinyl.cc" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.cc" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/controls/moc_vinylcontrolcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_vinylcontrolcontrol.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/controls/moc_vinylcontrolcontrol.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.cc" + }, + { + "command": "g++ -o osx64_build/src/broadcast/moc_broadcastmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/broadcast/moc_broadcastmanager.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/broadcast/moc_broadcastmanager.cc" + }, + { + "command": "g++ -o osx64_build/src/engine/sidechain/moc_shoutconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_shoutconnection.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/engine/sidechain/moc_shoutconnection.cc" + }, + { + "command": "g++ -o osx64_build/src/effects/lv2/moc_lv2backend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/lv2/moc_lv2backend.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/effects/lv2/moc_lv2backend.cc" + }, + { + "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreflv2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreflv2.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/src/preferences/dialog/moc_dlgpreflv2.cc" + }, + { + "command": "g++ -o osx64_build/res/qrc_mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/res/qrc_mixxx.cc", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "osx64_build/res/qrc_mixxx.cc" + }, + { + "command": "g++ -o osx64_build/src/main.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/main.cpp", + "directory": "/Users/cris/gsoc/fork/mixxx", + "file": "src/main.cpp" + } +] \ No newline at end of file diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..d4300312495cf90251194e10bcc0bf30e456d3b0 GIT binary patch literal 8196 zcmeI1O>7)B6oB7L(#B4kW)hN3(qv&FgoLt%{Ip3!8npRu#ZOB&e@zO>?9Q|qF*}p) z%x0U0R1t8bMZkr>3j*;gaX|Ed5FAk@BtR%qDS`_J4qUi$K!s;}Hfr;81*D86``Lbe zw%?m?$MP%y;6To32dD!8Mp;O04;5P^p%-~mDhhf^NFvz-=#Yh_RNh-i*_%d(9bp8* z2!s&`BM?R)jKKdP0(54J#I`y2l{PHH2!s*Xkr5E@hZtoc6MnUg*yhLcPLa#cxX4yeolgOxG3p`cuy>|$~_ zU_!~T3?mRmU~>e-&!-e@upmWu_gn7oZi+P5QVX`_`E702v8cFY*X~lr%2-)>*;C1R zH=p!%Kj#hT*%{F~sr&P(pg!ih_Ih1UO;~1rR;wO#9bdN`Gb@cP!=xc+CN0Ns^8;?q zF+4d>QYjeYjL&Md%ga4I@mTxewv~8nxx2e99y`?8wX(ulZF76y@wv>>#pP#LF1@B4 z!{Frr6&oCVeY2Ogw>X%xg_lK{f|oxQyySdOWVmuCVvhjiccX0-~B z+&!Llos(H}kzAWhyLK+)kft)N+vyw)Hv4TmXdCTzUPwQUV zbPUTmH@RqeR?0TV96e)JVx03eZC^!sq&8B|v?ex{OIhc0mcJzDYG{n`GY0MOan}&D z8QN9Gr6$%GiOdMiVAiD4U`$TKn;>`Q)NCl$0(b~fCe%jJ$ zq3bscu_4x!XjMAr6ng2uwp79LU3qa2c+^8}JT%0-wQG@HKn`-@YFSrSRBOu2bj9@Ls@NR6vd+~nkz)n1jUD%65IEKK?n1=iZ9{I_zJ#?Z{d6RK7N27;-~n9+E-Bl#bc^nDDg|GZTP_viuA!uqIha6 z6r;n{BQ5_4iZ}Ku{_d!*xwEM?-rm)lSbusO9@=eC-O7;!N0A|kDG(uXU5nJ#)$ecM z(Q#tQys#bGTB+cgt<~4oMWV6jJ&X|1RFgMHiO;J{L#1twKERk(Bqu)jV3cdc1TUA( zj!qucb`hscHoK2-u9XnTN_(`Aw7Ut}VBQ8kNP5_UxowGi8$N>1iMAi$Ix+Su{7#hp z2{*9>_Yq-r*no`~#rv>@7(0M*$=DI>2{;=e&Yr|1j^hN;His!R(8ROo;(7GY#~fZF z=AOgn@ddn$R|5Lp+`!vtfixxY-Oao$CbN$1I_F4Jp!9a5u(cy1P^`SH6Zik&?Z5x; zh**S9h7s7Q5x|n6h)N6n<|L$jks{5(AlRBCf_r2nlRRAOwPL{tOgiBAY)Tx|!V>$>{7%*qPl8 z#89!gBK{s!%8NynKO8(L7pp9fa8o!8*=cXR%N=X`}OpD zue;yZ-%i(?1ppk#8=U|e07z7sRJTxbm%{X{t|<{QQb`iYAHaZT(?xGSZM*3;*5N>i zK!`wyK!`wyK#0Kq0Rg(RS&`Pc_qjG~Lj*zuHY5V<{Sc$dWJ1VgE`wJGH9-nMlBEDa zp+4mSflo}xgpkWz2Cg(G&mK^?qDV22yOTb~%t4~?;y1Nc8Ey+@SOXtz!v)Kz57oT6c^ac+L#j63T z%ffuKJVx6q4DxRjk!&f(JEa(9Ws5dkql~1~+5&BTbl$gI$D1^B9?6ti?NPYLGp;k1 zGnsxW#&dK2U|^V1)x2k(GRe*=m_uak zO{XIt#x3}F>t=7~k${9k%@vUbpGdEGR41eyl?qy8Ju$*&K z1Q*h^Q$F_-}p=HW72fvfNmT!ZWIA>4$|;B)u_zJ#yfYxo|1grDGN_yvB0Kj2RU zL{xAG)}w|G;KSI8yRi+s@DLuxBiM(-cmhx26F7>~IE!h_pn+K|U=bJa1$-G_#nh}z_warE06)Ty`K}@*A|4aF6aqh`&Z-|95m9_Bi=4U}5u-zO%47cx5x?8Y*>`W< z_MOeU_QVeyestyZ%8qOmrT)&MfI6HT0cT2_2*`SyINA_xRPHNLxSZM(#4>Y1Vx(59 zxOFW0phN^wrQlI%iOMojnCn`iZIYx$xTYhzPbSW)66VC{>L#x3QF>+KuUg5q zeaa&e(Nx{cwT;REO$+~sZ|}ej_=LFj4cvhrh-beN$9^Y%RbfrQuSRUbow$oQ)`okq z0}o;k_7cwqafo;}f@An3CUG1mF(tTWqJu7;#~k{&gqLucICmMZ;EQ;bxc3Uah1bg1 zHd4m6>*Z`KBy*1KI_GG-#L(3);nRjfpn^xMvHX8{{qO%93X?F{5P^+`09FnqhXyF> z^=<{0YsaY0Qe}nNEpr*TP!pu%B!hIEgetValueString( ConfigKey(kConfigKey, "RandomQueueMinimumAllowed")).toInt(); bool randomQueueEnabled = (((m_pConfig->getValueString( From 853b091b55fceabaeca69c02d77a86bcd302172a Mon Sep 17 00:00:00 2001 From: Cristiano Lacerda Date: Fri, 6 Mar 2020 14:23:42 -0300 Subject: [PATCH 3/5] Revert "should remove whitespace error" This reverts commit 7255b7b17ff51fe9dfb38019b309f810d78313d0. --- compile_commands.json | 4537 ------------------------ src/.DS_Store | Bin 8196 -> 0 bytes src/library/.DS_Store | Bin 8196 -> 0 bytes src/library/autodj/autodjprocessor.cpp | 2 + 4 files changed, 2 insertions(+), 4537 deletions(-) delete mode 100644 compile_commands.json delete mode 100644 src/.DS_Store delete mode 100644 src/library/.DS_Store diff --git a/compile_commands.json b/compile_commands.json deleted file mode 100644 index 81b7f3eddad..00000000000 --- a/compile_commands.json +++ /dev/null @@ -1,4537 +0,0 @@ -[ - { - "command": "g++ -o osx64_build/src/control/control.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/control.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/control.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlaudiotaperpot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlaudiotaperpot.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlaudiotaperpot.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlbehavior.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlbehavior.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlbehavior.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controleffectknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controleffectknob.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controleffectknob.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlindicator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlindicator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlindicator.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controllinpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controllinpotmeter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controllinpotmeter.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controllogpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controllogpotmeter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controllogpotmeter.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlobject.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlobject.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlobjectscript.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlobjectscript.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlobjectscript.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlpotmeter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlpotmeter.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlproxy.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlproxy.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlpushbutton.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlpushbutton.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlttrotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlttrotary.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlttrotary.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/controlencoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/control/controlencoder.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/control/controlencoder.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/dlgcontrollerlearning.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgcontrollerlearning.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/dlgcontrollerlearning.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/dlgprefcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgprefcontroller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/dlgprefcontroller.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/dlgprefcontrollers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/dlgprefcontrollers.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/dlgprefcontrollers.cpp" - }, - { - "command": "g++ -o osx64_build/src/dialog/dlgabout.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/dialog/dlgabout.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/dialog/dlgabout.cpp" - }, - { - "command": "g++ -o osx64_build/src/dialog/dlgdevelopertools.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/dialog/dlgdevelopertools.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/dialog/dlgdevelopertools.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/configobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/configobject.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/configobject.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefautodj.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefautodj.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefdeck.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefdeck.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefcrossfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefcrossfader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefcrossfader.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefeffects.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefeffects.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefeffects.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefeq.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefeq.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefeq.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreferences.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreferences.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgpreferences.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefinterface.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefinterface.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefinterface.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreflibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreflibrary.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgpreflibrary.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefnovinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefnovinyl.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefnovinyl.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefrecord.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefrecord.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefreplaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefreplaygain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefreplaygain.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefsound.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefsound.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefsound.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefsounditem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefsounditem.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefsounditem.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefwaveform.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefwaveform.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefbeats.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefbeats.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefkey.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefkey.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/settingsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/settingsmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/settingsmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/replaygainsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/replaygainsettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/replaygainsettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/broadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/broadcastsettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/broadcastsettings_legacy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettings_legacy.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/broadcastsettings_legacy.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/broadcastsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastsettingsmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/broadcastsettingsmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/effectsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/effectsettingsmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/effectsettingsmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/broadcastprofile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/broadcastprofile.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/broadcastprofile.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/upgrade.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/upgrade.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/upgrade.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dlgpreferencepage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dlgpreferencepage.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dlgpreferencepage.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectmanifest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectmanifest.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectmanifest.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectmanifestparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectmanifestparameter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectmanifestparameter.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectchain.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectparameter.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectrack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectrack.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectchainslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchainslot.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectchainslot.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectslot.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectslot.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectparameterslotbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameterslotbase.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectparameterslotbase.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectparameterslot.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectparameterslot.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectbuttonparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectbuttonparameterslot.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectbuttonparameterslot.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectsmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectsmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectchainmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectchainmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectchainmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/effectsbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/effectsbackend.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/effectsbackend.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/builtinbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/builtinbackend.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/builtinbackend.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/bitcrushereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bitcrushereffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/bitcrushereffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/balanceeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/balanceeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/balanceeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/linkwitzriley8eqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/linkwitzriley8eqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/linkwitzriley8eqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/bessel4lvmixeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bessel4lvmixeqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/bessel4lvmixeqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/bessel8lvmixeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/bessel8lvmixeqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/bessel8lvmixeqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/threebandbiquadeqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/threebandbiquadeqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/threebandbiquadeqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/biquadfullkilleqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/biquadfullkilleqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/biquadfullkilleqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/loudnesscontoureffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/loudnesscontoureffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/loudnesscontoureffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/graphiceqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/graphiceqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/graphiceqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/parametriceqeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/parametriceqeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/parametriceqeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/flangereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/flangereffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/flangereffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/filtereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/filtereffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/filtereffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/moogladder4filtereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/moogladder4filtereffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/moogladder4filtereffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/reverbeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/reverbeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/reverbeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/echoeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/echoeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/echoeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/autopaneffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/autopaneffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/autopaneffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/phasereffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/phasereffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/phasereffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/metronomeeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/metronomeeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/metronomeeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/tremoloeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/builtin/tremoloeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/builtin/tremoloeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/effects/engineeffectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectsmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/effects/engineeffectsmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/effects/engineeffectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectrack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/effects/engineeffectrack.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/effects/engineeffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffectchain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/effects/engineeffectchain.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/effects/engineeffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/effects/engineeffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/effects/engineeffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/basesyncablelistener.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/basesyncablelistener.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sync/basesyncablelistener.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/enginesync.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/enginesync.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sync/enginesync.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/synccontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/synccontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sync/synccontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/internalclock.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sync/internalclock.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sync/internalclock.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/engineworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineworker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/engineworker.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/engineworkerscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineworkerscheduler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/engineworkerscheduler.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginebuffer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginebuffer.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscale.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscale.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/bufferscalers/enginebufferscale.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalelinear.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalelinear.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/bufferscalers/enginebufferscalelinear.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/engineaux.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/engineaux.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/channels/engineaux.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/enginechannel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginechannel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/channels/enginechannel.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/enginedeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginedeck.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/channels/enginedeck.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/enginemicrophone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channels/enginemicrophone.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/channels/enginemicrophone.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterbiquad1.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbiquad1.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterbiquad1.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefiltermoogladder4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefiltermoogladder4.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefiltermoogladder4.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterbessel4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbessel4.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterbessel4.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterbessel8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbessel8.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterbessel8.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterbutterworth4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbutterworth4.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterbutterworth4.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterbutterworth8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterbutterworth8.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterbutterworth8.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley2.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterlinkwitzriley2.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley4.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterlinkwitzriley4.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilterlinkwitzriley8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilterlinkwitzriley8.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilterlinkwitzriley8.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/enginefilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/filters/enginefilter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/filters/enginefilter.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/engineobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/engineobject.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/engineobject.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginepregain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginepregain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginepregain.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginemaster.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginemaster.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginemaster.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginedelay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginedelay.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginedelay.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginevumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginevumeter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginevumeter.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginesidechaincompressor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginesidechaincompressor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginesidechaincompressor.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/enginesidechain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginesidechain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/enginesidechain.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/networkoutputstreamworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/networkoutputstreamworker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/networkoutputstreamworker.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/networkinputstreamworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/networkinputstreamworker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/networkinputstreamworker.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginexfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginexfader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginexfader.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/channelmixer_autogen.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/channelmixer_autogen.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/channelmixer_autogen.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/positionscratchcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/positionscratchcontroller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/positionscratchcontroller.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/bpmcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/bpmcontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/bpmcontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/clockcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/clockcontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/clockcontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/cuecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/cuecontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/cuecontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/enginecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/enginecontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/enginecontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/keycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/keycontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/keycontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/loopingcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/loopingcontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/loopingcontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/quantizecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/quantizecontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/quantizecontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/ratecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/ratecontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/ratecontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/readaheadmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/readaheadmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/readaheadmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/enginetalkoverducking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/enginetalkoverducking.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/enginetalkoverducking.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/cachingreader/cachingreader.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreaderchunk.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreaderchunk.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/cachingreader/cachingreaderchunk.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/cachingreader/cachingreaderworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/cachingreader/cachingreaderworker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/cachingreader/cachingreaderworker.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/trackanalysisscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/trackanalysisscheduler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/trackanalysisscheduler.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerthread.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzerthread.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzerwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerwaveform.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzerwaveform.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzergain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzergain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzergain.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzerbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerbeats.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzerbeats.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzerkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerkey.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzerkey.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzerebur128.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzerebur128.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzerebur128.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/analyzersilence.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/analyzersilence.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/analyzersilence.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/plugins/analyzersoundtouchbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzersoundtouchbeats.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/plugins/analyzersoundtouchbeats.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/plugins/analyzerqueenmarybeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzerqueenmarybeats.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/plugins/analyzerqueenmarybeats.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/plugins/analyzerqueenmarykey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/analyzerqueenmarykey.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/plugins/analyzerqueenmarykey.cpp" - }, - { - "command": "g++ -o osx64_build/src/analyzer/plugins/buffering_utils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/analyzer/plugins/buffering_utils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/analyzer/plugins/buffering_utils.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controller.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerdebug.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerdebug.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerdebug.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerengine.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerengine.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerengine.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerenumerator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerenumerator.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerlearningeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerlearningeventfilter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerlearningeventfilter.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllermanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllermanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetfilehandler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerpresetfilehandler.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerpresetinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetinfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerpresetinfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerpresetinfoenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerpresetinfoenumerator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerpresetinfoenumerator.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controlpickermenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controlpickermenu.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controlpickermenu.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllermappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllermappingtablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllermappingtablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controllerinputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controllerinputmappingtablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controllerinputmappingtablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/controlleroutputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/controlleroutputmappingtablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/controlleroutputmappingtablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/controldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/controldelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/delegates/controldelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/midichanneldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midichanneldelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/delegates/midichanneldelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/midiopcodedelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midiopcodedelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/delegates/midiopcodedelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/midibytedelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midibytedelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/delegates/midibytedelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/midioptionsdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/delegates/midioptionsdelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/delegates/midioptionsdelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/learningutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/learningutils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/learningutils.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midimessage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midimessage.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midimessage.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midiutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midiutils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midiutils.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midicontroller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midicontroller.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midicontrollerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midicontrollerpresetfilehandler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midicontrollerpresetfilehandler.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midienumerator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midienumerator.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/midioutputhandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/midioutputhandler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/midioutputhandler.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/softtakeover.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/softtakeover.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/softtakeover.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/keyboard/keyboardeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/keyboard/keyboardeventfilter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/keyboard/keyboardeventfilter.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/colorjsproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/colorjsproxy.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/colorjsproxy.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixxx.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixxx.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixxxapplication.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixxxapplication.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixxxapplication.cpp" - }, - { - "command": "g++ -o osx64_build/src/errordialoghandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/errordialoghandler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/errordialoghandler.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/audiosource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/audiosource.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/audiosource.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/audiosourcestereoproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/audiosourcestereoproxy.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/audiosourcestereoproxy.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/metadatasourcetaglib.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/metadatasourcetaglib.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/metadatasourcetaglib.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsource.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsource.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourceproviderregistry.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceproviderregistry.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourceproviderregistry.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourceproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceproxy.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourceproxy.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/controlwidgetconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/controlwidgetconnection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/controlwidgetconnection.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wbasewidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbasewidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wbasewidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wwidgetgroup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidgetgroup.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wwidgetgroup.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wwidgetstack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwidgetstack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wwidgetstack.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wsizeawarestack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsizeawarestack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wsizeawarestack.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlabel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wlabel.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wtracktext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktext.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wtracktext.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wnumber.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumber.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wnumber.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wbeatspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbeatspinbox.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wbeatspinbox.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wnumberdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberdb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wnumberdb.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wnumberpos.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberpos.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wnumberpos.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wnumberrate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wnumberrate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wnumberrate.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wknob.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wknob.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wknobcomposed.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wknobcomposed.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wdisplay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wdisplay.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wdisplay.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wvumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wvumeter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wvumeter.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wpushbutton.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wpushbutton.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectpushbutton.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectpushbutton.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wslidercomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wslidercomposed.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wslidercomposed.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wstatuslight.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wstatuslight.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wstatuslight.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/woverview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverview.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/woverview.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/woverviewlmh.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewlmh.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/woverviewlmh.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/woverviewhsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewhsv.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/woverviewhsv.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/woverviewrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/woverviewrgb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/woverviewrgb.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wspinny.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wspinny.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wspinny.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wskincolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wskincolor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wskincolor.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wsearchlineedit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsearchlineedit.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wsearchlineedit.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wpixmapstore.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wpixmapstore.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wpixmapstore.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/paintable.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/paintable.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/paintable.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wimagestore.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wimagestore.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wimagestore.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/hexspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/hexspinbox.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/hexspinbox.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wtrackproperty.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtrackproperty.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wtrackproperty.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wstarrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wstarrating.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wstarrating.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectchain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectchain.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffect.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffect.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectselector.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectselector.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectselector.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectparameter.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectparameterknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterknob.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectparameterknob.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectparameterknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterknobcomposed.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectparameterknobcomposed.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectbuttonparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectbuttonparameter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectbuttonparameter.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/weffectparameterbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/weffectparameterbase.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/weffectparameterbase.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wtime.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtime.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wtime.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wrecordingduration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wrecordingduration.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wrecordingduration.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wkey.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wkey.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wbattery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wbattery.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wbattery.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcombobox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcombobox.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcombobox.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wsplitter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsplitter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wsplitter.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcoverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverart.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcoverart.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcoverartlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverartlabel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcoverartlabel.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcoverartmenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcoverartmenu.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcoverartmenu.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcolorpicker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcolorpicker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcolorpicker.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcolorpickeraction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcolorpickeraction.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcolorpickeraction.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wcuemenupopup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wcuemenupopup.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wcuemenupopup.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wsingletoncontainer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wsingletoncontainer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wsingletoncontainer.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wmainmenubar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wmainmenubar.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wmainmenubar.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/tagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/tagfetcher.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/tagfetcher.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/gzip.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/gzip.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/gzip.cpp" - }, - { - "command": "gcc -o osx64_build/src/musicbrainz/crc.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/crc.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/crc.c" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/chromaprinter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/chromaprinter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/chromaprinter.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/musicbrainz.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/musicbrainz.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/musicbrainz.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/musicbrainzxml.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/musicbrainzxml.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/musicbrainzxml.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/web/acoustidlookuptask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/web/acoustidlookuptask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/web/acoustidlookuptask.cpp" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/web/musicbrainzrecordingstask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/musicbrainz/web/musicbrainzrecordingstask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/musicbrainz/web/musicbrainzrecordingstask.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wtracktableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktableview.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wtracktableview.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wtracktableviewheader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wtracktableviewheader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wtracktableviewheader.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wlibrarysidebar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarysidebar.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wlibrarysidebar.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wlibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrary.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wlibrary.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wlibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarytableview.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wlibrarytableview.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wanalysislibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wanalysislibrarytableview.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wanalysislibrarytableview.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wlibrarytextbrowser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wlibrarytextbrowser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wlibrarytextbrowser.cpp" - }, - { - "command": "g++ -o osx64_build/src/database/mixxxdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/database/mixxxdb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/database/mixxxdb.cpp" - }, - { - "command": "g++ -o osx64_build/src/database/schemamanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/database/schemamanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/database/schemamanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/trackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackcollection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/trackcollection.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/trackcollectionmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackcollectionmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/trackcollectionmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/externaltrackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/externaltrackcollection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/externaltrackcollection.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/basesqltablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/basesqltablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/basesqltablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/basetrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/basetrackcache.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/basetrackcache.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/columncache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/columncache.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/columncache.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/librarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/librarytablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/librarytablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/searchquery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/searchquery.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/searchquery.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/searchqueryparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/searchqueryparser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/searchqueryparser.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/analysislibrarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/analysislibrarytablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/analysislibrarytablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/missingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/missingtablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/missingtablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/hiddentablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/hiddentablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/hiddentablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/proxytrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/proxytrackmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/proxytrackmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/coverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverart.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/coverart.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/coverartcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartcache.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/coverartcache.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/coverartutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartutils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/coverartutils.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/crate/cratestorage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratestorage.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/crate/cratestorage.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/crate/cratefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratefeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/crate/cratefeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/crate/cratefeaturehelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratefeaturehelper.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/crate/cratefeaturehelper.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/crate/cratetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/crate/cratetablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/crate/cratetablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/playlisttablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/playlisttablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/playlisttablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/libraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/libraryfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/libraryfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/analysisfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/analysisfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/analysisfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/autodjfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/autodjfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/autodj/autodjfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/autodjprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/autodjprocessor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/autodj/autodjprocessor.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/directorydao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/directorydao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/directorydao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/mixxxlibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/mixxxlibraryfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/mixxxlibraryfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/baseplaylistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseplaylistfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/baseplaylistfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/playlistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/playlistfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/playlistfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/setlogfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/setlogfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/setlogfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/dlgautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/autodj/dlgautodj.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/autodj/dlgautodj.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlganalysis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlganalysis.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlganalysis.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlgcoverartfullsize.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgcoverartfullsize.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlgcoverartfullsize.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlghidden.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlghidden.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlghidden.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlgmissing.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgmissing.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlgmissing.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlgtagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtagfetcher.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlgtagfetcher.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlgtrackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtrackinfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlgtrackinfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dlgtrackmetadataexport.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dlgtrackmetadataexport.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dlgtrackmetadataexport.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/browse/browsetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsetablemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/browse/browsetablemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/browse/browsethread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsethread.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/browse/browsethread.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/browse/browsefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/browsefeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/browse/browsefeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/browse/foldertreemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/browse/foldertreemodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/browse/foldertreemodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/export/trackexportdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportdlg.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/export/trackexportdlg.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/export/trackexportwizard.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportwizard.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/export/trackexportwizard.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/export/trackexportworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/export/trackexportworker.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/export/trackexportworker.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/recording/recordingfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/recording/recordingfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/recording/recordingfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/recording/dlgrecording.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/recording/dlgrecording.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/recording/dlgrecording.cpp" - }, - { - "command": "g++ -o osx64_build/src/recording/recordingmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/recording/recordingmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/recording/recordingmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/enginerecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginerecord.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/enginerecord.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/baseexternallibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternallibraryfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/baseexternallibraryfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/baseexternaltrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternaltrackmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/baseexternaltrackmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/baseexternalplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/baseexternalplaylistmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/baseexternalplaylistmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/rhythmbox/rhythmboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rhythmbox/rhythmboxfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/rhythmbox/rhythmboxfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/banshee/bansheefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheefeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/banshee/bansheefeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/banshee/bansheeplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheeplaylistmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/banshee/bansheeplaylistmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/banshee/bansheedbconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/banshee/bansheedbconnection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/banshee/bansheedbconnection.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/itunes/itunesfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/itunes/itunesfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/itunes/itunesfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/traktor/traktorfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/traktor/traktorfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/traktor/traktorfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/serato/seratofeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/serato/seratofeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/serato/seratofeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/serato/seratoplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/serato/seratoplaylistmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/serato/seratoplaylistmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/rekordbox/rekordboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordboxfeature.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/rekordbox/rekordboxfeature.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/rekordbox/rekordbox_pdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordbox_pdb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/rekordbox/rekordbox_pdb.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/rekordbox/rekordbox_anlz.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/rekordbox/rekordbox_anlz.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/rekordbox/rekordbox_anlz.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/sidebarmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/sidebarmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/sidebarmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/library.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/library.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/library.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/libraryscanner.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/libraryscanner.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/scanner/libraryscanner.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/libraryscannerdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/libraryscannerdlg.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/scanner/libraryscannerdlg.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/scannertask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/scannertask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/scanner/scannertask.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/importfilestask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/importfilestask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/scanner/importfilestask.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/recursivescandirectorytask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/scanner/recursivescandirectorytask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/scanner/recursivescandirectorytask.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/cuedao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/cuedao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/cuedao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/trackdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/trackdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/trackdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/playlistdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/playlistdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/playlistdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/libraryhashdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/libraryhashdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/libraryhashdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/settingsdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/settingsdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/settingsdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/analysisdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/analysisdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/analysisdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/dao/autodjcratesdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/dao/autodjcratesdao.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/dao/autodjcratesdao.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/librarycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/librarycontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/librarycontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/songdownloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/songdownloader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/songdownloader.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/starrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/starrating.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/starrating.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/stardelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/stardelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/stardelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/stareditor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/stareditor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/stareditor.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/bpmdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/bpmdelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/bpmdelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/previewbuttondelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/previewbuttondelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/previewbuttondelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/colordelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/colordelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/colordelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/coverartdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/coverartdelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/coverartdelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/locationdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/locationdelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/locationdelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/tableitemdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/tableitemdelegate.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/tableitemdelegate.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/treeitemmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/treeitemmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/treeitemmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/treeitem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/treeitem.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/treeitem.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/parser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/parser.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/parserpls.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parserpls.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/parserpls.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/parserm3u.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parserm3u.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/parserm3u.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/parsercsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/parsercsv.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/parsercsv.cpp" - }, - { - "command": "g++ -o osx64_build/src/library/trackloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/library/trackloader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/library/trackloader.cpp" - }, - { - "command": "g++ -o osx64_build/src/network/jsonwebtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/network/jsonwebtask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/network/jsonwebtask.cpp" - }, - { - "command": "g++ -o osx64_build/src/network/webtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/network/webtask.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/network/webtask.cpp" - }, - { - "command": "g++ -o osx64_build/src/widget/wwaveformviewer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/widget/wwaveformviewer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/widget/wwaveformviewer.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/sharedglcontext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/sharedglcontext.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/sharedglcontext.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/waveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveform.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/waveform.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/waveformfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformfactory.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/waveformfactory.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/waveformwidgetfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformwidgetfactory.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/waveformwidgetfactory.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/vsyncthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/vsyncthread.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/vsyncthread.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/guitick.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/guitick.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/guitick.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/visualsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/visualsmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/visualsmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/visualplayposition.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/visualplayposition.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/visualplayposition.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformwidgetrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformwidgetrenderer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformwidgetrenderer.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererabstract.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererabstract.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererabstract.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderbackground.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderbackground.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrenderbackground.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendermark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendermark.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendermark.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendermarkrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendermarkrange.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendermarkrange.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderbeat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderbeat.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrenderbeat.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererendoftrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererendoftrack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererendoftrack.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererpreroll.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererpreroll.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererpreroll.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererfilteredsignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererfilteredsignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererhsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererhsv.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererhsv.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrendererrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrendererrgb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrendererrgb.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/qtwaveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/qtwaveformrendererfilteredsignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/qtwaveformrenderersimplesignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtwaveformrenderersimplesignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/qtwaveformrenderersimplesignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/qtvsynctestrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/qtvsynctestrenderer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/qtvsynctestrenderer.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformsignalcolors.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformsignalcolors.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformsignalcolors.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformrenderersignalbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformrenderersignalbase.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformrenderersignalbase.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformmark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmark.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformmark.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformmarkset.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmarkset.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformmarkset.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/waveformmarkrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/waveformmarkrange.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/waveformmarkrange.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrenderersimplesignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrenderersimplesignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/glwaveformrenderersimplesignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrendererrgb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrendererrgb.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/glwaveformrendererrgb.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/glwaveformrendererfilteredsignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glwaveformrendererfilteredsignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/glwaveformrendererfilteredsignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/glslwaveformrenderersignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glslwaveformrenderersignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/glslwaveformrenderersignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/glvsynctestrenderer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/renderers/glvsynctestrenderer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/renderers/glvsynctestrenderer.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/waveformmarklabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/waveformmarklabel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/waveformmarklabel.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/waveformwidgetabstract.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/waveformwidgetabstract.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/waveformwidgetabstract.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/emptywaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/emptywaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/emptywaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/softwarewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/softwarewaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/softwarewaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/hsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/hsvwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/hsvwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/rgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/rgbwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/rgbwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/qthsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qthsvwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/qthsvwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/qtrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtrgbwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/qtrgbwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/qtwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/qtwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/qtsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtsimplewaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/qtsimplewaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/qtvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/qtvsynctestwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/qtvsynctestwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/glwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/glwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/glsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glsimplewaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/glsimplewaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/glvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glvsynctestwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/glvsynctestwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/glslwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glslwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/glslwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/glrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/waveform/widgets/glrgbwaveformwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/waveform/widgets/glrgbwaveformwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/imginvert.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imginvert.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/imginvert.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/imgloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imgloader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/imgloader.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/imgcolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/imgcolor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/imgcolor.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/skinloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/skinloader.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/skinloader.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/legacyskinparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/legacyskinparser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/legacyskinparser.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/colorschemeparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/colorschemeparser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/colorschemeparser.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/tooltips.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/tooltips.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/tooltips.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/skincontext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/skincontext.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/skincontext.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/svgparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/svgparser.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/svgparser.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/pixmapsource.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/pixmapsource.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/pixmapsource.cpp" - }, - { - "command": "g++ -o osx64_build/src/skin/launchimage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/skin/launchimage.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/skin/launchimage.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/beatfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatfactory.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/beatfactory.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/beatgrid.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatgrid.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/beatgrid.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/beatmap.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatmap.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/beatmap.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/beatutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beatutils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/beatutils.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/beats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/beats.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/beats.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/bpm.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/bpm.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/bpm.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/cue.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/cue.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/cue.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/cueinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/cueinfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/cueinfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/keyfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keyfactory.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/keyfactory.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/keys.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keys.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/keys.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/keyutils.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/keyutils.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/keyutils.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/playcounter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/playcounter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/playcounter.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/replaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/replaygain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/replaygain.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/serato/markers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/serato/markers.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/serato/markers.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/serato/markers2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/serato/markers2.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/serato/markers2.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/track.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/track.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/track.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/globaltrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/globaltrackcache.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/globaltrackcache.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackfile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackfile.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackfile.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackmetadata.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackmetadata.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackmetadata.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackmetadatataglib.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackmetadatataglib.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackmetadatataglib.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/tracknumbers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/tracknumbers.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/tracknumbers.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/albuminfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/albuminfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/albuminfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackinfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackinfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackrecord.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackrecord.cpp" - }, - { - "command": "g++ -o osx64_build/src/track/trackref.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/track/trackref.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/track/trackref.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/auxiliary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/auxiliary.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/auxiliary.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/baseplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/baseplayer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/baseplayer.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/basetrackplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/basetrackplayer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/basetrackplayer.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/deck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/deck.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/deck.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/microphone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/microphone.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/microphone.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/playerinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/playerinfo.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/playerinfo.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/playermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/playermanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/playermanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/previewdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/previewdeck.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/previewdeck.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/sampler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/sampler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/sampler.cpp" - }, - { - "command": "g++ -o osx64_build/src/mixer/samplerbank.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/mixer/samplerbank.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/mixer/samplerbank.cpp" - }, - { - "command": "g++ -o osx64_build/src/soundio/sounddevice.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddevice.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/sounddevice.cpp" - }, - { - "command": "g++ -o osx64_build/src/soundio/sounddevicenetwork.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddevicenetwork.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/sounddevicenetwork.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/enginenetworkstream.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/enginenetworkstream.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/enginenetworkstream.cpp" - }, - { - "command": "g++ -o osx64_build/src/soundio/soundmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/soundmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/soundio/soundmanagerconfig.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanagerconfig.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/soundmanagerconfig.cpp" - }, - { - "command": "g++ -o osx64_build/src/soundio/soundmanagerutil.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/soundmanagerutil.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/soundmanagerutil.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoder.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoder.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderbroadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderbroadcastsettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderbroadcastsettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderflacsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderflacsettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderflacsettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encodermp3.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodermp3.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encodermp3.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encodermp3settings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodermp3settings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encodermp3settings.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encodersndfileflac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodersndfileflac.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encodersndfileflac.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encodervorbis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodervorbis.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encodervorbis.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encodervorbissettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encodervorbissettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encodervorbissettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderwave.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderwave.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderwave.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderwavesettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderwavesettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderwavesettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderopussettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderopussettings.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderopussettings.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/sleepableqthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sleepableqthread.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/sleepableqthread.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/statsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/statsmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/statsmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/stat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/stat.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/stat.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/statmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/statmodel.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/statmodel.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/dnd.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/dnd.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/dnd.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/duration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/duration.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/duration.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/time.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/time.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/time.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/timer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/timer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/timer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/performancetimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/performancetimer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/performancetimer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/threadcputimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/threadcputimer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/threadcputimer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/version.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/version.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/version.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/rlimit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/rlimit.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/rlimit.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/battery/battery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/battery/battery.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/battery/battery.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/valuetransformer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/valuetransformer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/valuetransformer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/sandbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sandbox.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/sandbox.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/file.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/file.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/file.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/mac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/mac.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/mac.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/task.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/task.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/task.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/experiment.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/experiment.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/experiment.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/xml.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/xml.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/xml.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/tapfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/tapfilter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/tapfilter.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/movinginterquartilemean.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/movinginterquartilemean.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/movinginterquartilemean.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/cache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/cache.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/cache.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/console.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/console.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/console.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/color/color.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/color/color.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/color/color.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/dbconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/dbconnection.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/dbconnectionpool.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpool.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/dbconnectionpool.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/dbconnectionpooler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpooler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/dbconnectionpooler.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/dbconnectionpooled.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbconnectionpooled.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/dbconnectionpooled.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/dbid.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/dbid.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/dbid.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/fwdsqlquery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/fwdsqlquery.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/fwdsqlquery.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/fwdsqlqueryselectresult.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/fwdsqlqueryselectresult.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/fwdsqlqueryselectresult.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/sqllikewildcardescaper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqllikewildcardescaper.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/sqllikewildcardescaper.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/sqlqueryfinisher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqlqueryfinisher.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/sqlqueryfinisher.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/sqlstringformatter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqlstringformatter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/sqlstringformatter.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/db/sqltransaction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/db/sqltransaction.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/db/sqltransaction.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/sample.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/sample.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/sample.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/samplebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/samplebuffer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/samplebuffer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/readaheadsamplebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/readaheadsamplebuffer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/readaheadsamplebuffer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/rotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/rotary.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/rotary.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/logger.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/logger.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/logger.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/logging.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/logging.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/logging.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/cmdlineargs.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/cmdlineargs.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/cmdlineargs.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/audiosignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/audiosignal.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/audiosignal.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/widgethider.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/widgethider.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/widgethider.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/autohidpi.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/autohidpi.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/autohidpi.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/screensaver.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/screensaver.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/screensaver.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/indexrange.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/indexrange.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/indexrange.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/desktophelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/desktophelper.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/desktophelper.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/widgetrendertimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/widgetrendertimer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/widgetrendertimer.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/workerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/workerthread.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/workerthread.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/workerthreadscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/workerthreadscheduler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/workerthreadscheduler.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/color/predefinedcolor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/color/predefinedcolor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/color/predefinedcolor.cpp" - }, - { - "command": "g++ -o osx64_build/src/proto/beats.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/beats.pb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/proto/beats.pb.cc" - }, - { - "command": "g++ -o osx64_build/src/proto/headers.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/headers.pb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/proto/headers.pb.cc" - }, - { - "command": "g++ -o osx64_build/src/proto/keys.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/keys.pb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/proto/keys.pb.cc" - }, - { - "command": "g++ -o osx64_build/src/proto/skin.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/skin.pb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/proto/skin.pb.cc" - }, - { - "command": "g++ -o osx64_build/src/proto/waveform.pb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/proto/waveform.pb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/proto/waveform.pb.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalest.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/bufferscalers/enginebufferscalest.cpp" - }, - { - "command": "g++ -o osx64_build/lib/replaygain/replaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/replaygain/replaygain.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/replaygain/replaygain.cpp" - }, - { - "command": "gcc -o osx64_build/lib/libebur128/ebur128/ebur128.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/libebur128/ebur128/ebur128.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/libebur128/ebur128/ebur128.c" - }, - { - "command": "g++ -o osx64_build/src/soundio/sounddeviceportaudio.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/soundio/sounddeviceportaudio.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/soundio/sounddeviceportaudio.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/portmidienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/portmidienumerator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/portmidienumerator.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/portmidicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/midi/portmidicontroller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/midi/portmidicontroller.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourcesndfile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourcesndfile.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourcesndfile.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourceflac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceflac.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourceflac.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourceoggvorbis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceoggvorbis.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourceoggvorbis.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/enginebufferscalerubberband.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/bufferscalers/enginebufferscalerubberband.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/bufferscalers/enginebufferscalerubberband.cpp" - }, - { - "command": "g++ -o osx64_build/lib/qtscript-bytearray/bytearrayclass.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qtscript-bytearray/bytearrayclass.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qtscript-bytearray/bytearrayclass.cpp" - }, - { - "command": "g++ -o osx64_build/lib/qtscript-bytearray/bytearrayprototype.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qtscript-bytearray/bytearrayprototype.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qtscript-bytearray/bytearrayprototype.cpp" - }, - { - "command": "g++ -o osx64_build/lib/reverb/Reverb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/reverb/Reverb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/reverb/Reverb.cc" - }, - { - "command": "gcc -o osx64_build/lib/portaudio/pa_ringbuffer.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/portaudio/pa_ringbuffer.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/portaudio/pa_ringbuffer.c" - }, - { - "command": "g++ -o lib/qm-dsp/base/Pitch.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/base/Pitch.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/base/Pitch.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/chromagram/Chromagram.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/chromagram/Chromagram.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/chromagram/Chromagram.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/chromagram/ConstantQ.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/chromagram/ConstantQ.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/chromagram/ConstantQ.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/keydetection/GetKeyMode.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/keydetection/GetKeyMode.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/keydetection/GetKeyMode.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/onsets/DetectionFunction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/onsets/DetectionFunction.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/onsets/DetectionFunction.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/onsets/PeakPicking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/onsets/PeakPicking.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/onsets/PeakPicking.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/phasevocoder/PhaseVocoder.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/rateconversion/Decimator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/rateconversion/Decimator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/rateconversion/Decimator.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/DFProcess.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/DFProcess.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/signalconditioning/DFProcess.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/FiltFilt.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/FiltFilt.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/signalconditioning/FiltFilt.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/Filter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/Filter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/signalconditioning/Filter.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/signalconditioning/Framer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/signalconditioning/Framer.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/signalconditioning/Framer.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tempotracking/DownBeat.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/DownBeat.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tempotracking/DownBeat.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tempotracking/TempoTrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/TempoTrack.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tempotracking/TempoTrack.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tempotracking/TempoTrackV2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tempotracking/TempoTrackV2.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tempotracking/TempoTrackV2.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tonal/ChangeDetectionFunction.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tonal/TCSgram.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/TCSgram.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tonal/TCSgram.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/tonal/TonalEstimator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/tonal/TonalEstimator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/tonal/TonalEstimator.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/dsp/transforms/FFT.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/dsp/transforms/FFT.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/dsp/transforms/FFT.cpp" - }, - { - "command": "gcc -o lib/qm-dsp/ext/kissfft/kiss_fft.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/ext/kissfft/kiss_fft.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/ext/kissfft/kiss_fft.c" - }, - { - "command": "gcc -o lib/qm-dsp/ext/kissfft/tools/kiss_fftr.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/ext/kissfft/tools/kiss_fftr.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/ext/kissfft/tools/kiss_fftr.c" - }, - { - "command": "g++ -o lib/qm-dsp/maths/Correlation.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/Correlation.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/maths/Correlation.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/maths/KLDivergence.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/KLDivergence.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/maths/KLDivergence.cpp" - }, - { - "command": "g++ -o lib/qm-dsp/maths/MathUtilities.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/qm-dsp/maths/MathUtilities.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/qm-dsp/maths/MathUtilities.cpp" - }, - { - "command": "g++ -o osx64_build/lib/kaitai/kaitaistream.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/kaitai/kaitaistream.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/kaitai/kaitaistream.cpp" - }, - { - "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/mp3guessenc.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/mp3guessenc.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/mp3guessenc-0.27.4/mp3guessenc.c" - }, - { - "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/tags.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/tags.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/mp3guessenc-0.27.4/tags.c" - }, - { - "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/decode.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/decode.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/mp3guessenc-0.27.4/decode.c" - }, - { - "command": "gcc -o osx64_build/lib/mp3guessenc-0.27.4/bit_utils.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/mp3guessenc-0.27.4/bit_utils.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/mp3guessenc-0.27.4/bit_utils.c" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourcecoreaudio.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourcecoreaudio.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourcecoreaudio.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/v1/legacyaudiosourceadapter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/v1/legacyaudiosourceadapter.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/v1/legacyaudiosourceadapter.cpp" - }, - { - "command": "g++ -o osx64_build/lib/apple/CAStreamBasicDescription.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/apple/CAStreamBasicDescription.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/apple/CAStreamBasicDescription.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/hid/hidcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidcontroller.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/hid/hidcontroller.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/hid/hidenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidenumerator.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/hid/hidenumerator.cpp" - }, - { - "command": "g++ -o osx64_build/src/controllers/hid/hidcontrollerpresetfilehandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/controllers/hid/hidcontrollerpresetfilehandler.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/controllers/hid/hidcontrollerpresetfilehandler.cpp" - }, - { - "command": "gcc -o osx64_build/lib/hidapi-0.8.0-rc1/mac/hid.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/hidapi-0.8.0-rc1/mac/hid.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/hidapi-0.8.0-rc1/mac/hid.c" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/vinylcontrol.cpp" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolxwax.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolxwax.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/vinylcontrolxwax.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefvinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefvinyl.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefvinyl.cpp" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolsignalwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolsignalwidget.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/vinylcontrolsignalwidget.cpp" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/vinylcontrolmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/vinylcontrolprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/vinylcontrolprocessor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/vinylcontrolprocessor.cpp" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/steadypitch.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/vinylcontrol/steadypitch.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/vinylcontrol/steadypitch.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/vinylcontrolcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/controls/vinylcontrolcontrol.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/controls/vinylcontrolcontrol.cpp" - }, - { - "command": "gcc -o osx64_build/lib/xwax/timecoder.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/xwax/timecoder.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/xwax/timecoder.c" - }, - { - "command": "gcc -o osx64_build/lib/xwax/lut.o -c -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax lib/xwax/lut.c", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "lib/xwax/lut.c" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgprefbroadcast.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgprefbroadcast.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgprefbroadcast.cpp" - }, - { - "command": "g++ -o osx64_build/src/broadcast/broadcastmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/broadcast/broadcastmanager.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/broadcast/broadcastmanager.cpp" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/shoutconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/engine/sidechain/shoutconnection.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/engine/sidechain/shoutconnection.cpp" - }, - { - "command": "g++ -o osx64_build/src/sources/soundsourceopus.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/sources/soundsourceopus.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/sources/soundsourceopus.cpp" - }, - { - "command": "g++ -o osx64_build/src/encoder/encoderopus.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/encoder/encoderopus.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/encoder/encoderopus.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/lv2/lv2backend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2backend.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/lv2/lv2backend.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/lv2/lv2effectprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2effectprocessor.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/lv2/lv2effectprocessor.cpp" - }, - { - "command": "g++ -o osx64_build/src/effects/lv2/lv2manifest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/effects/lv2/lv2manifest.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/effects/lv2/lv2manifest.cpp" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/dlgpreflv2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/preferences/dialog/dlgpreflv2.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/preferences/dialog/dlgpreflv2.cpp" - }, - { - "command": "g++ -o osx64_build/src/util/battery/batterymac.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/util/battery/batterymac.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/util/battery/batterymac.cpp" - }, - { - "command": "g++ -o osx64_build/src/control/moc_control.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_control.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_control.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlaudiotaperpot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlaudiotaperpot.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlaudiotaperpot.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controleffectknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controleffectknob.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controleffectknob.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlindicator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlindicator.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlindicator.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controllinpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controllinpotmeter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controllinpotmeter.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controllogpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controllogpotmeter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controllogpotmeter.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlobject.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlobject.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlobjectscript.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlobjectscript.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlobjectscript.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlpotmeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlpotmeter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlpotmeter.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlproxy.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlproxy.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlpushbutton.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlpushbutton.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlttrotary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlttrotary.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlttrotary.cc" - }, - { - "command": "g++ -o osx64_build/src/control/moc_controlencoder.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/control/moc_controlencoder.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/control/moc_controlencoder.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_dlgcontrollerlearning.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgcontrollerlearning.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_dlgcontrollerlearning.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_dlgprefcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgprefcontroller.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_dlgprefcontroller.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_dlgprefcontrollers.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_dlgprefcontrollers.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_dlgprefcontrollers.cc" - }, - { - "command": "g++ -o osx64_build/src/dialog/moc_dlgabout.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/dialog/moc_dlgabout.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/dialog/moc_dlgabout.cc" - }, - { - "command": "g++ -o osx64_build/src/dialog/moc_dlgdevelopertools.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/dialog/moc_dlgdevelopertools.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/dialog/moc_dlgdevelopertools.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefautodj.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefautodj.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefdeck.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefdeck.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefcrossfader.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefeffects.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefeffects.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefeffects.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefeq.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefeq.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefeq.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreferences.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreferences.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgpreferences.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefinterface.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefinterface.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefinterface.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreflibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreflibrary.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgpreflibrary.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefnovinyl.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefrecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefrecord.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefrecord.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefreplaygain.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefsound.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefsound.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefsound.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefsounditem.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefsounditem.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefsounditem.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefwaveform.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefwaveform.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefwaveform.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefbeats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefbeats.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefbeats.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefkey.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefkey.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_settingsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_settingsmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_settingsmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_broadcastsettings.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastsettings.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_broadcastsettings.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_broadcastsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastsettingsmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_broadcastsettingsmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_effectsettingsmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_effectsettingsmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_effectsettingsmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_broadcastprofile.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_broadcastprofile.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_broadcastprofile.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/moc_dlgpreferencepage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/moc_dlgpreferencepage.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/moc_dlgpreferencepage.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchain.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectchain.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effect.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effect.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectparameter.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectrack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectrack.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectrack.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectchainslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchainslot.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectchainslot.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectslot.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectslot.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectparameterslotbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameterslotbase.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectparameterslotbase.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectparameterslot.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectparameterslot.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectbuttonparameterslot.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectbuttonparameterslot.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectbuttonparameterslot.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectsmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectsmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectchainmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectchainmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectchainmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/moc_effectsbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/moc_effectsbackend.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/moc_effectsbackend.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/builtin/moc_builtinbackend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/builtin/moc_builtinbackend.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/builtin/moc_builtinbackend.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/moc_synccontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sync/moc_synccontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/sync/moc_synccontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/sync/moc_internalclock.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sync/moc_internalclock.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/sync/moc_internalclock.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_engineworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineworker.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_engineworker.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_engineworkerscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineworkerscheduler.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_engineworkerscheduler.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_enginebuffer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginebuffer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_enginebuffer.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscale.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscale.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscale.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/moc_engineaux.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_engineaux.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/channels/moc_engineaux.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/moc_enginechannel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginechannel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/channels/moc_enginechannel.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/moc_enginedeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginedeck.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/channels/moc_enginedeck.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/channels/moc_enginemicrophone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/channels/moc_enginemicrophone.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/channels/moc_enginemicrophone.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbiquad1.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbiquad1.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterbiquad1.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefiltermoogladder4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefiltermoogladder4.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefiltermoogladder4.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbessel4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbessel4.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterbessel4.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbessel8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbessel8.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterbessel8.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbutterworth4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbutterworth4.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterbutterworth4.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterbutterworth8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterbutterworth8.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterbutterworth8.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley2.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley4.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilterlinkwitzriley8.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/filters/moc_enginefilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/filters/moc_enginefilter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/filters/moc_enginefilter.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_engineobject.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_engineobject.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_engineobject.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_enginemaster.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginemaster.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_enginemaster.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_enginedelay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginedelay.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_enginedelay.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_enginevumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginevumeter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_enginevumeter.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/moc_enginesidechain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_enginesidechain.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/sidechain/moc_enginesidechain.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_bpmcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_bpmcontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_bpmcontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_clockcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_clockcontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_clockcontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_cuecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_cuecontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_cuecontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_enginecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_enginecontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_enginecontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_keycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_keycontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_keycontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_loopingcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_loopingcontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_loopingcontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_quantizecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_quantizecontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_quantizecontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_ratecontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_ratecontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_ratecontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/moc_enginetalkoverducking.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/moc_enginetalkoverducking.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/moc_enginetalkoverducking.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/cachingreader/moc_cachingreader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/cachingreader/moc_cachingreader.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/cachingreader/moc_cachingreader.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/cachingreader/moc_cachingreaderworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/cachingreader/moc_cachingreaderworker.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/cachingreader/moc_cachingreaderworker.cc" - }, - { - "command": "g++ -o osx64_build/src/analyzer/moc_trackanalysisscheduler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/analyzer/moc_trackanalysisscheduler.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/analyzer/moc_trackanalysisscheduler.cc" - }, - { - "command": "g++ -o osx64_build/src/analyzer/moc_analyzerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/analyzer/moc_analyzerthread.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/analyzer/moc_analyzerthread.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controller.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controller.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllerengine.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerengine.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllerengine.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllerenumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerenumerator.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllerenumerator.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllerlearningeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerlearningeventfilter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllerlearningeventfilter.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllermanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllermanager.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controlpickermenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controlpickermenu.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controlpickermenu.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllermappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllermappingtablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllermappingtablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controllerinputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controllerinputmappingtablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controllerinputmappingtablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_controlleroutputmappingtablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/moc_controldelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/delegates/moc_controldelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/delegates/moc_controldelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/delegates/moc_midioptionsdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/delegates/moc_midioptionsdelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/delegates/moc_midioptionsdelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/moc_midicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midicontroller.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/midi/moc_midicontroller.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/moc_midienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midienumerator.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/midi/moc_midienumerator.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/moc_midioutputhandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_midioutputhandler.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/midi/moc_midioutputhandler.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/keyboard/moc_keyboardeventfilter.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/moc_colorjsproxy.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/moc_colorjsproxy.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/moc_colorjsproxy.cc" - }, - { - "command": "g++ -o osx64_build/src/moc_mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_mixxx.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/moc_mixxx.cc" - }, - { - "command": "g++ -o osx64_build/src/moc_mixxxapplication.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_mixxxapplication.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/moc_mixxxapplication.cc" - }, - { - "command": "g++ -o osx64_build/src/moc_errordialoghandler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/moc_errordialoghandler.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/moc_errordialoghandler.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_controlwidgetconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_controlwidgetconnection.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_controlwidgetconnection.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wwidgetgroup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidgetgroup.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wwidgetgroup.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wwidgetstack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwidgetstack.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wwidgetstack.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wsizeawarestack.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsizeawarestack.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wsizeawarestack.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlabel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wlabel.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wtracktext.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktext.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wtracktext.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wnumber.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumber.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wnumber.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wbeatspinbox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wbeatspinbox.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wbeatspinbox.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wnumberdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberdb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wnumberdb.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wnumberpos.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberpos.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wnumberpos.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wnumberrate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wnumberrate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wnumberrate.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wknob.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wknob.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wknobcomposed.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wknobcomposed.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wdisplay.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wdisplay.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wdisplay.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wvumeter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wvumeter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wvumeter.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wpushbutton.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wpushbutton.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectpushbutton.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectpushbutton.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectpushbutton.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wslidercomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wslidercomposed.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wslidercomposed.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wstatuslight.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wstatuslight.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wstatuslight.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_woverview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_woverview.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_woverview.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wspinny.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wspinny.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wspinny.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wsearchlineedit.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsearchlineedit.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wsearchlineedit.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wtrackproperty.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtrackproperty.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wtrackproperty.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wstarrating.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wstarrating.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wstarrating.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectchain.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectchain.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectchain.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffect.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffect.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffect.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectselector.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectselector.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectselector.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectparameter.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectparameterknob.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterknob.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectparameterknob.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectparameterknobcomposed.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterknobcomposed.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectparameterknobcomposed.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectbuttonparameter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectbuttonparameter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectbuttonparameter.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_weffectparameterbase.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_weffectparameterbase.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_weffectparameterbase.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wtime.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtime.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wtime.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wrecordingduration.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wrecordingduration.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wrecordingduration.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wkey.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wkey.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wkey.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wbattery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wbattery.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wbattery.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcombobox.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcombobox.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcombobox.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wsplitter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsplitter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wsplitter.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcoverart.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverart.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcoverart.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcoverartlabel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverartlabel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcoverartlabel.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcoverartmenu.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcoverartmenu.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcoverartmenu.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcolorpicker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcolorpicker.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcolorpicker.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcolorpickeraction.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcolorpickeraction.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcolorpickeraction.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wcuemenupopup.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wcuemenupopup.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wcuemenupopup.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wsingletoncontainer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wsingletoncontainer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wsingletoncontainer.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wmainmenubar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wmainmenubar.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wmainmenubar.cc" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/moc_tagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/moc_tagfetcher.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/musicbrainz/moc_tagfetcher.cc" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/moc_chromaprinter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/moc_chromaprinter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/musicbrainz/moc_chromaprinter.cc" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/musicbrainz/web/moc_acoustidlookuptask.cc" - }, - { - "command": "g++ -o osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/musicbrainz/web/moc_musicbrainzrecordingstask.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wtracktableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktableview.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wtracktableview.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wtracktableviewheader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wtracktableviewheader.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wtracktableviewheader.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wlibrarysidebar.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarysidebar.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wlibrarysidebar.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wlibrary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrary.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wlibrary.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wlibrarytableview.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarytableview.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wlibrarytableview.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wlibrarytextbrowser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wlibrarytextbrowser.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wlibrarytextbrowser.cc" - }, - { - "command": "g++ -o osx64_build/src/database/moc_mixxxdb.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/database/moc_mixxxdb.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/database/moc_mixxxdb.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_trackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackcollection.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_trackcollection.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_trackcollectionmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackcollectionmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_trackcollectionmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_externaltrackcollection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_externaltrackcollection.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_externaltrackcollection.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_basesqltablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_basesqltablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_basesqltablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_basetrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_basetrackcache.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_basetrackcache.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_columncache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_columncache.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_columncache.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_librarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_librarytablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_librarytablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_analysislibrarytablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_analysislibrarytablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_analysislibrarytablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_missingtablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_missingtablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_missingtablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_hiddentablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_hiddentablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_hiddentablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_coverartcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_coverartcache.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_coverartcache.cc" - }, - { - "command": "g++ -o osx64_build/src/library/crate/moc_cratefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratefeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/crate/moc_cratefeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/crate/moc_cratefeaturehelper.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratefeaturehelper.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/crate/moc_cratefeaturehelper.cc" - }, - { - "command": "g++ -o osx64_build/src/library/crate/moc_cratetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/crate/moc_cratetablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/crate/moc_cratetablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_playlisttablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_playlisttablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_playlisttablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_libraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_libraryfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_libraryfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_analysisfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_analysisfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_analysisfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/moc_autodjfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_autodjfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/autodj/moc_autodjfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/moc_autodjprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_autodjprocessor.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/autodj/moc_autodjprocessor.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_mixxxlibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_mixxxlibraryfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_mixxxlibraryfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_baseplaylistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseplaylistfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_baseplaylistfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_playlistfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_playlistfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_playlistfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_setlogfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_setlogfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_setlogfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/autodj/moc_dlgautodj.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/autodj/moc_dlgautodj.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/autodj/moc_dlgautodj.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlganalysis.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlganalysis.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlganalysis.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlgcoverartfullsize.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgcoverartfullsize.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlgcoverartfullsize.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlghidden.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlghidden.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlghidden.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlgmissing.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgmissing.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlgmissing.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlgtagfetcher.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtagfetcher.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlgtagfetcher.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlgtrackinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtrackinfo.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlgtrackinfo.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_dlgtrackmetadataexport.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_dlgtrackmetadataexport.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_dlgtrackmetadataexport.cc" - }, - { - "command": "g++ -o osx64_build/src/library/browse/moc_browsetablemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsetablemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/browse/moc_browsetablemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/browse/moc_browsethread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsethread.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/browse/moc_browsethread.cc" - }, - { - "command": "g++ -o osx64_build/src/library/browse/moc_browsefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_browsefeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/browse/moc_browsefeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/browse/moc_foldertreemodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/browse/moc_foldertreemodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/browse/moc_foldertreemodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/export/moc_trackexportdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportdlg.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/export/moc_trackexportdlg.cc" - }, - { - "command": "g++ -o osx64_build/src/library/export/moc_trackexportwizard.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportwizard.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/export/moc_trackexportwizard.cc" - }, - { - "command": "g++ -o osx64_build/src/library/export/moc_trackexportworker.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/export/moc_trackexportworker.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/export/moc_trackexportworker.cc" - }, - { - "command": "g++ -o osx64_build/src/library/recording/moc_recordingfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/recording/moc_recordingfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/recording/moc_recordingfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/recording/moc_dlgrecording.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/recording/moc_dlgrecording.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/recording/moc_dlgrecording.cc" - }, - { - "command": "g++ -o osx64_build/src/recording/moc_recordingmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/recording/moc_recordingmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/recording/moc_recordingmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/moc_enginerecord.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_enginerecord.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/sidechain/moc_enginerecord.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_baseexternallibraryfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternallibraryfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_baseexternallibraryfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_baseexternaltrackmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternaltrackmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_baseexternaltrackmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_baseexternalplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_baseexternalplaylistmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_baseexternalplaylistmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/rhythmbox/moc_rhythmboxfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/banshee/moc_bansheefeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/banshee/moc_bansheefeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/banshee/moc_bansheefeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/banshee/moc_bansheeplaylistmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/banshee/moc_bansheeplaylistmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/banshee/moc_bansheeplaylistmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/itunes/moc_itunesfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/itunes/moc_itunesfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/itunes/moc_itunesfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/traktor/moc_traktorfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/traktor/moc_traktorfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/traktor/moc_traktorfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/serato/moc_seratofeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/serato/moc_seratofeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/serato/moc_seratofeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/rekordbox/moc_rekordboxfeature.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/rekordbox/moc_rekordboxfeature.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/rekordbox/moc_rekordboxfeature.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_sidebarmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_sidebarmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_sidebarmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_library.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_library.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_library.cc" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/moc_libraryscanner.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_libraryscanner.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/scanner/moc_libraryscanner.cc" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/moc_libraryscannerdlg.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_libraryscannerdlg.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/scanner/moc_libraryscannerdlg.cc" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/moc_scannertask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_scannertask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/scanner/moc_scannertask.cc" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/moc_importfilestask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_importfilestask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/scanner/moc_importfilestask.cc" - }, - { - "command": "g++ -o osx64_build/src/library/scanner/moc_recursivescandirectorytask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/scanner/moc_recursivescandirectorytask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/scanner/moc_recursivescandirectorytask.cc" - }, - { - "command": "g++ -o osx64_build/src/library/dao/moc_trackdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_trackdao.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/dao/moc_trackdao.cc" - }, - { - "command": "g++ -o osx64_build/src/library/dao/moc_playlistdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_playlistdao.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/dao/moc_playlistdao.cc" - }, - { - "command": "g++ -o osx64_build/src/library/dao/moc_autodjcratesdao.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/dao/moc_autodjcratesdao.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/dao/moc_autodjcratesdao.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_librarycontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_librarycontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_librarycontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_songdownloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_songdownloader.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_songdownloader.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_stardelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_stardelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_stardelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_stareditor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_stareditor.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_stareditor.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_bpmdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_bpmdelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_bpmdelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_previewbuttondelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_previewbuttondelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_previewbuttondelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_colordelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_colordelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_colordelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_coverartdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_coverartdelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_coverartdelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_locationdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_locationdelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_locationdelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_tableitemdelegate.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_tableitemdelegate.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_tableitemdelegate.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_treeitemmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_treeitemmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_treeitemmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_parserpls.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parserpls.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_parserpls.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_parserm3u.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parserm3u.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_parserm3u.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_parsercsv.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_parsercsv.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_parsercsv.cc" - }, - { - "command": "g++ -o osx64_build/src/library/moc_trackloader.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/library/moc_trackloader.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/library/moc_trackloader.cc" - }, - { - "command": "g++ -o osx64_build/src/network/moc_jsonwebtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/network/moc_jsonwebtask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/network/moc_jsonwebtask.cc" - }, - { - "command": "g++ -o osx64_build/src/network/moc_webtask.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/network/moc_webtask.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/network/moc_webtask.cc" - }, - { - "command": "g++ -o osx64_build/src/widget/moc_wwaveformviewer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/widget/moc_wwaveformviewer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/widget/moc_wwaveformviewer.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/moc_waveformwidgetfactory.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_waveformwidgetfactory.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/moc_waveformwidgetfactory.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/moc_vsyncthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_vsyncthread.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/moc_vsyncthread.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/moc_visualplayposition.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/moc_visualplayposition.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/moc_visualplayposition.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/moc_waveformrendermark.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/renderers/moc_waveformrendermark.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/renderers/moc_waveformrendermark.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/renderers/moc_glslwaveformrenderersignal.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_emptywaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_emptywaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_emptywaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_softwarewaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_hsvwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_rgbwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_qthsvwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_qtrgbwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_qtwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_qtsimplewaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_qtvsynctestwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_glwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_glwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_glsimplewaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_glvsynctestwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glvsynctestwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_glvsynctestwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_glslwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glslwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_glslwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/waveform/widgets/moc_glrgbwaveformwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/skin/moc_legacyskinparser.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_legacyskinparser.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/skin/moc_legacyskinparser.cc" - }, - { - "command": "g++ -o osx64_build/src/skin/moc_tooltips.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_tooltips.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/skin/moc_tooltips.cc" - }, - { - "command": "g++ -o osx64_build/src/skin/moc_launchimage.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/skin/moc_launchimage.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/skin/moc_launchimage.cc" - }, - { - "command": "g++ -o osx64_build/src/track/moc_beats.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_beats.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/track/moc_beats.cc" - }, - { - "command": "g++ -o osx64_build/src/track/moc_cue.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_cue.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/track/moc_cue.cc" - }, - { - "command": "g++ -o osx64_build/src/track/moc_track.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_track.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/track/moc_track.cc" - }, - { - "command": "g++ -o osx64_build/src/track/moc_globaltrackcache.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/track/moc_globaltrackcache.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/track/moc_globaltrackcache.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_auxiliary.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_auxiliary.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_auxiliary.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_baseplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_baseplayer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_baseplayer.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_basetrackplayer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_basetrackplayer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_basetrackplayer.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_deck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_deck.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_deck.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_microphone.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_microphone.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_microphone.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_playerinfo.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_playerinfo.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_playerinfo.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_playermanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_playermanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_playermanager.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_previewdeck.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_previewdeck.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_previewdeck.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_sampler.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_sampler.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_sampler.cc" - }, - { - "command": "g++ -o osx64_build/src/mixer/moc_samplerbank.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/mixer/moc_samplerbank.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/mixer/moc_samplerbank.cc" - }, - { - "command": "g++ -o osx64_build/src/soundio/moc_sounddevicenetwork.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/soundio/moc_sounddevicenetwork.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/soundio/moc_sounddevicenetwork.cc" - }, - { - "command": "g++ -o osx64_build/src/soundio/moc_soundmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/soundio/moc_soundmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/soundio/moc_soundmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_sleepableqthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_sleepableqthread.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_sleepableqthread.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_statsmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_statsmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_statsmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_statmodel.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_statmodel.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_statmodel.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_timer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_timer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_timer.cc" - }, - { - "command": "g++ -o osx64_build/src/util/battery/moc_battery.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/battery/moc_battery.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/battery/moc_battery.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_task.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_task.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_task.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_tapfilter.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_tapfilter.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_tapfilter.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_widgethider.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_widgethider.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_widgethider.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_widgetrendertimer.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_widgetrendertimer.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_widgetrendertimer.cc" - }, - { - "command": "g++ -o osx64_build/src/util/moc_workerthread.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/util/moc_workerthread.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/util/moc_workerthread.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscalest.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/moc_portmidienumerator.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_portmidienumerator.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/midi/moc_portmidienumerator.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/midi/moc_portmidicontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/midi/moc_portmidicontroller.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/midi/moc_portmidicontroller.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/bufferscalers/moc_enginebufferscalerubberband.cc" - }, - { - "command": "g++ -o osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/lib/qtscript-bytearray/moc_bytearrayclass.cc" - }, - { - "command": "g++ -o osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/lib/qtscript-bytearray/moc_bytearrayprototype.cc" - }, - { - "command": "g++ -o osx64_build/src/controllers/hid/moc_hidcontroller.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/controllers/hid/moc_hidcontroller.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/controllers/hid/moc_hidcontroller.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefvinyl.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefvinyl.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefvinyl.cc" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolsignalwidget.cc" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/vinylcontrol/moc_vinylcontrolprocessor.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/controls/moc_vinylcontrolcontrol.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/controls/moc_vinylcontrolcontrol.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/controls/moc_vinylcontrolcontrol.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgprefbroadcast.cc" - }, - { - "command": "g++ -o osx64_build/src/broadcast/moc_broadcastmanager.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/broadcast/moc_broadcastmanager.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/broadcast/moc_broadcastmanager.cc" - }, - { - "command": "g++ -o osx64_build/src/engine/sidechain/moc_shoutconnection.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/engine/sidechain/moc_shoutconnection.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/engine/sidechain/moc_shoutconnection.cc" - }, - { - "command": "g++ -o osx64_build/src/effects/lv2/moc_lv2backend.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/effects/lv2/moc_lv2backend.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/effects/lv2/moc_lv2backend.cc" - }, - { - "command": "g++ -o osx64_build/src/preferences/dialog/moc_dlgpreflv2.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/src/preferences/dialog/moc_dlgpreflv2.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/src/preferences/dialog/moc_dlgpreflv2.cc" - }, - { - "command": "g++ -o osx64_build/res/qrc_mixxx.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax osx64_build/res/qrc_mixxx.cc", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "osx64_build/res/qrc_mixxx.cc" - }, - { - "command": "g++ -o osx64_build/src/main.o -c -I/usr/local/include -I/usr/local/include/opus -std=c++17 -fno-aligned-allocation -I/usr/local/include -I/usr/local/include/opus -arch x86_64 -pipe -Wall -Wextra -Wno-inconsistent-missing-override -Wno-deprecated-register -Wimplicit-fallthrough -Wthread-safety -g -isystem /usr/local/include -F/usr/local/Cellar/qt/5.14.1/Frameworks -O3 -ffast-math -funroll-loops -fomit-frame-pointer -mtune=generic -Dx86_64 -DMIXXX_BUILD_DEBUG -DSETTINGS_FILE=\\\"mixxx.cfg\\\" -DQT_TABLET_SUPPORT -DQT_USE_QSTRINGBUILDER -DQT_SHARED -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_SCRIPT_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_XML_LIB -D__SNDFILE__ -DSFC_SUPPORTS_SET_COMPRESSION_LEVEL -Dkiss_fft_scalar=double -DUSE_PTHREADS -DKS_STR_ENCODING_NONE -D__COREAUDIO__ -D__HID__ -D__VINYLCONTROL__ -D__BROADCAST__ -D__OPUS__ -D__LILV__ -D__BATTERY__ -Iosx64_build/src -Isrc -Ilib/soundtouch -Ilib/replaygain -Ilib/libebur128/ebur128 -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtConcurrent.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtCore.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtGui.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtNetwork.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtOpenGL.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScript.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtScriptTools.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSql.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtSvg.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtTest.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtWidgets.framework/Headers -I/usr/local/Cellar/qt/5.14.1/Frameworks/QtXml.framework/Headers -Ilib/googletest-1.8.x/googletest/include -Ilib/fidlib -I/usr/include/taglib -I/System/Library/Frameworks/Security.framework/Headers -I/System/Library/Frameworks/CoreServices.framework/Headers -I/System/Library/Frameworks/IOKit.framework/Headers -Ilib/qtscript-bytearray -Ilib/reverb -Ilib/portaudio -Ilib/qm-dsp -Ilib/qm-dsp/include -Ilib/kaitai -Ilib/mp3guessenc-0.27.4 -Ilib/rigtorp/SPSCQueue/include -Ilib/apple -Ilib/hidapi-0.8.0-rc1/hidapi -Ilib/xwax src/main.cpp", - "directory": "/Users/cris/gsoc/fork/mixxx", - "file": "src/main.cpp" - } -] \ No newline at end of file diff --git a/src/.DS_Store b/src/.DS_Store deleted file mode 100644 index d4300312495cf90251194e10bcc0bf30e456d3b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeI1O>7)B6oB7L(#B4kW)hN3(qv&FgoLt%{Ip3!8npRu#ZOB&e@zO>?9Q|qF*}p) z%x0U0R1t8bMZkr>3j*;gaX|Ed5FAk@BtR%qDS`_J4qUi$K!s;}Hfr;81*D86``Lbe zw%?m?$MP%y;6To32dD!8Mp;O04;5P^p%-~mDhhf^NFvz-=#Yh_RNh-i*_%d(9bp8* z2!s&`BM?R)jKKdP0(54J#I`y2l{PHH2!s*Xkr5E@hZtoc6MnUg*yhLcPLa#cxX4yeolgOxG3p`cuy>|$~_ zU_!~T3?mRmU~>e-&!-e@upmWu_gn7oZi+P5QVX`_`E702v8cFY*X~lr%2-)>*;C1R zH=p!%Kj#hT*%{F~sr&P(pg!ih_Ih1UO;~1rR;wO#9bdN`Gb@cP!=xc+CN0Ns^8;?q zF+4d>QYjeYjL&Md%ga4I@mTxewv~8nxx2e99y`?8wX(ulZF76y@wv>>#pP#LF1@B4 z!{Frr6&oCVeY2Ogw>X%xg_lK{f|oxQyySdOWVmuCVvhjiccX0-~B z+&!Llos(H}kzAWhyLK+)kft)N+vyw)Hv4TmXdCTzUPwQUV zbPUTmH@RqeR?0TV96e)JVx03eZC^!sq&8B|v?ex{OIhc0mcJzDYG{n`GY0MOan}&D z8QN9Gr6$%GiOdMiVAiD4U`$TKn;>`Q)NCl$0(b~fCe%jJ$ zq3bscu_4x!XjMAr6ng2uwp79LU3qa2c+^8}JT%0-wQG@HKn`-@YFSrSRBOu2bj9@Ls@NR6vd+~nkz)n1jUD%65IEKK?n1=iZ9{I_zJ#?Z{d6RK7N27;-~n9+E-Bl#bc^nDDg|GZTP_viuA!uqIha6 z6r;n{BQ5_4iZ}Ku{_d!*xwEM?-rm)lSbusO9@=eC-O7;!N0A|kDG(uXU5nJ#)$ecM z(Q#tQys#bGTB+cgt<~4oMWV6jJ&X|1RFgMHiO;J{L#1twKERk(Bqu)jV3cdc1TUA( zj!qucb`hscHoK2-u9XnTN_(`Aw7Ut}VBQ8kNP5_UxowGi8$N>1iMAi$Ix+Su{7#hp z2{*9>_Yq-r*no`~#rv>@7(0M*$=DI>2{;=e&Yr|1j^hN;His!R(8ROo;(7GY#~fZF z=AOgn@ddn$R|5Lp+`!vtfixxY-Oao$CbN$1I_F4Jp!9a5u(cy1P^`SH6Zik&?Z5x; zh**S9h7s7Q5x|n6h)N6n<|L$jks{5(AlRBCf_r2nlRRAOwPL{tOgiBAY)Tx|!V>$>{7%*qPl8 z#89!gBK{s!%8NynKO8(L7pp9fa8o!8*=cXR%N=X`}OpD zue;yZ-%i(?1ppk#8=U|e07z7sRJTxbm%{X{t|<{QQb`iYAHaZT(?xGSZM*3;*5N>i zK!`wyK!`wyK#0Kq0Rg(RS&`Pc_qjG~Lj*zuHY5V<{Sc$dWJ1VgE`wJGH9-nMlBEDa zp+4mSflo}xgpkWz2Cg(G&mK^?qDV22yOTb~%t4~?;y1Nc8Ey+@SOXtz!v)Kz57oT6c^ac+L#j63T z%ffuKJVx6q4DxRjk!&f(JEa(9Ws5dkql~1~+5&BTbl$gI$D1^B9?6ti?NPYLGp;k1 zGnsxW#&dK2U|^V1)x2k(GRe*=m_uak zO{XIt#x3}F>t=7~k${9k%@vUbpGdEGR41eyl?qy8Ju$*&K z1Q*h^Q$F_-}p=HW72fvfNmT!ZWIA>4$|;B)u_zJ#yfYxo|1grDGN_yvB0Kj2RU zL{xAG)}w|G;KSI8yRi+s@DLuxBiM(-cmhx26F7>~IE!h_pn+K|U=bJa1$-G_#nh}z_warE06)Ty`K}@*A|4aF6aqh`&Z-|95m9_Bi=4U}5u-zO%47cx5x?8Y*>`W< z_MOeU_QVeyestyZ%8qOmrT)&MfI6HT0cT2_2*`SyINA_xRPHNLxSZM(#4>Y1Vx(59 zxOFW0phN^wrQlI%iOMojnCn`iZIYx$xTYhzPbSW)66VC{>L#x3QF>+KuUg5q zeaa&e(Nx{cwT;REO$+~sZ|}ej_=LFj4cvhrh-beN$9^Y%RbfrQuSRUbow$oQ)`okq z0}o;k_7cwqafo;}f@An3CUG1mF(tTWqJu7;#~k{&gqLucICmMZ;EQ;bxc3Uah1bg1 zHd4m6>*Z`KBy*1KI_GG-#L(3);nRjfpn^xMvHX8{{qO%93X?F{5P^+`09FnqhXyF> z^=<{0YsaY0Qe}nNEpr*TP!pu%B!hIEgetValueString( ConfigKey(kConfigKey, "RandomQueueMinimumAllowed")).toInt(); bool randomQueueEnabled = (((m_pConfig->getValueString( From c2383bdda20568befcac1896b80e3f87aa5e7a8c Mon Sep 17 00:00:00 2001 From: Cristiano Lacerda Date: Fri, 6 Mar 2020 14:29:18 -0300 Subject: [PATCH 4/5] should fix whitespace error --- src/library/autodj/autodjprocessor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/library/autodj/autodjprocessor.cpp b/src/library/autodj/autodjprocessor.cpp index 3955ff113ee..8dfea08b9f2 100644 --- a/src/library/autodj/autodjprocessor.cpp +++ b/src/library/autodj/autodjprocessor.cpp @@ -681,12 +681,10 @@ bool AutoDJProcessor::removeTrackFromTopOfQueue(TrackPointer pTrack) { } maybeFillRandomTracks(); - return true; } void AutoDJProcessor::maybeFillRandomTracks() { - int minAutoDJCrateTracks = m_pConfig->getValueString( ConfigKey(kConfigKey, "RandomQueueMinimumAllowed")).toInt(); bool randomQueueEnabled = (((m_pConfig->getValueString( From 828a82ee3cb2a3e8a2dd53a8f9c66d20d753358b Mon Sep 17 00:00:00 2001 From: Cristiano Lacerda Date: Sat, 7 Mar 2020 13:55:06 -0300 Subject: [PATCH 5/5] added changelog entry and fixed whitespace --- CHANGELOG | 1 + src/library/autodj/autodjprocessor.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 0014407d483..b4ed91085b2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ * Prevent infinite loop when decoding corrupt MP3 files #2417 * Add controller mapping for Native Instruments Traktor Kontrol S2 MK3 #2348 * Add controller mapping for Soundless joyMIDI #2425 +* AutoDJ skip next track when both deck are playing lp:1399974 #2531 ==== 2.2.3 2019-11-24 ==== * Don't make users reconfigure sound hardware when it has not changed #2253 diff --git a/src/library/autodj/autodjprocessor.cpp b/src/library/autodj/autodjprocessor.cpp index 8dfea08b9f2..01706e7c5c0 100644 --- a/src/library/autodj/autodjprocessor.cpp +++ b/src/library/autodj/autodjprocessor.cpp @@ -234,7 +234,7 @@ AutoDJProcessor::AutoDJError AutoDJProcessor::skipNext() { } else if (!rightDeck.isPlaying()) { removeLoadedTrackFromTopOfQueue(rightDeck); loadNextTrackFromQueue(rightDeck); - } else { + } else { // If both decks are playing remove next track in playlist TrackId nextId = m_pAutoDJTableModel->getTrackId(m_pAutoDJTableModel->index(0, 0)); TrackId leftId = leftDeck.getLoadedTrack()->getId();