Add C++11 compile flag to the carla plugin as well

Fixes the carla plugin not compiling anymore after switching to C++11
range-based for loops.
This commit is contained in:
Fastigium
2016-03-15 10:47:08 +01:00
parent 9e98a16a8a
commit f3ea8350a6

View File

@@ -1,4 +1,7 @@
if(LMMS_HAVE_CARLA)
# Enable C++11
ADD_DEFINITIONS(-std=c++0x)
INCLUDE(BuildPlugin)
INCLUDE_DIRECTORIES(${CARLA_INCLUDE_DIRS})
LINK_DIRECTORIES(${CARLA_LIBRARY_DIRS})