Add more brew packages (#3595)

* Add more brew packages
This commit is contained in:
Tres Finocchiaro
2017-06-01 02:13:59 -04:00
committed by GitHub
parent 635b50bfb5
commit 7be63741d3
3 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk portaudio node fltk"
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl libgig libsoundio stk portaudio node fltk"
if [ $QT5 ]; then
PACKAGES="$PACKAGES homebrew/versions/qt55"

View File

@@ -2,6 +2,11 @@ if(LMMS_HAVE_GIG)
INCLUDE(BuildPlugin)
INCLUDE_DIRECTORIES(${GIG_INCLUDE_DIRS})
# Disable C++11 on Clang until gig.h is patched
IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
REMOVE_DEFINITIONS(-std=c++0x)
ENDIF()
# Required for not crashing loading files with libgig
SET(GCC_COVERAGE_COMPILE_FLAGS "-fexceptions")
add_definitions(${GCC_COVERAGE_COMPILE_FLAGS})

View File

@@ -30,7 +30,6 @@
#include "LcdSpinBox.h"
#include "GigPlayer.h"
#include <fluidsynth.h>
#include <QWidget>
#include <QLabel>