diff options
author | John Fultz <jfultz@wolfram.com> | 2017-08-10 00:08:04 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2017-08-10 02:33:13 -0500 |
commit | b3672501e03144a7ad56e6751694697a0d23e240 (patch) | |
tree | b3c68a8c7a1a224318f47f174eae2070564e3f03 /quackleio/iotest | |
parent | 3bfacc90fb3152384e1a4ae8894265fc8d966a56 (diff) |
Add OS X builds to Travis-CI.
Also, add a bit of parallelization, do a few other cleanups
on the yml and .pro files. And push C++14 flags everywhere
into the build system.
Diffstat (limited to 'quackleio/iotest')
-rw-r--r-- | quackleio/iotest/iotest.pro | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/quackleio/iotest/iotest.pro b/quackleio/iotest/iotest.pro index c7e994f..9962dbc 100644 --- a/quackleio/iotest/iotest.pro +++ b/quackleio/iotest/iotest.pro @@ -5,6 +5,8 @@ INCLUDEPATH += . .. ../.. # enable/disable debug symbols #CONFIG += debug CONFIG += release +CONFIG += c++14 +CONFIG -= debug debug { OBJECTS_DIR = obj/debug @@ -30,3 +32,7 @@ SOURCES += iotest.cpp trademarkedboards.cpp macx-g++ { QMAKE_CXXFLAGS += -fpermissive } + +linux { # old unixes/Qt distribs running around...most notably on Travis-CI + QMAKE_CXXFLAGS += -std=c++1y +} |