From cab9086b7a9728c3e0aa0fa1edb5379194373c9f Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sat, 18 May 2019 08:51:11 +0200 Subject: [PATCH] for old linux compilers we need to explicitely activate C++11 features --- Jamulus.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jamulus.pro b/Jamulus.pro index a4f21112..dbd4b49b 100755 --- a/Jamulus.pro +++ b/Jamulus.pro @@ -103,6 +103,9 @@ win32 { ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android OTHER_FILES += android/AndroidManifest.xml } else:unix { + # we want to compile with C++11 + QMAKE_CXXFLAGS += -std=c++0x + # we assume that stdint.h is always present in a Linux system DEFINES += HAVE_STDINT_H