aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-01-02 20:59:27 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-01-02 20:59:27 +0200
commitedaf663ee2e7dfc01af3cace2f83a3fca7ef94d3 (patch)
tree4c20ee37e4ead5105bc445493822337c819ebb8d /test cases
parent20f0f805a7223b9173d9516085989baee137e924 (diff)
downloadmeson-edaf663ee2e7dfc01af3cace2f83a3fca7ef94d3.zip
meson-edaf663ee2e7dfc01af3cace2f83a3fca7ef94d3.tar.gz
meson-edaf663ee2e7dfc01af3cace2f83a3fca7ef94d3.tar.bz2
By default do not specify language version but instead use the compiler's default.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/102 threads/meson.build3
-rw-r--r--test cases/frameworks/1 boost/meson.build3
2 files changed, 4 insertions, 2 deletions
diff --git a/test cases/common/102 threads/meson.build b/test cases/common/102 threads/meson.build
index 78e5fbe..1fbb15a 100644
--- a/test cases/common/102 threads/meson.build
+++ b/test cases/common/102 threads/meson.build
@@ -1,4 +1,5 @@
-project('threads', 'cpp', 'c')
+project('threads', 'cpp', 'c',
+ default_options : ['cpp_std=c++11'])
threaddep = dependency('threads')
diff --git a/test cases/frameworks/1 boost/meson.build b/test cases/frameworks/1 boost/meson.build
index 454c161..6f9b16f 100644
--- a/test cases/frameworks/1 boost/meson.build
+++ b/test cases/frameworks/1 boost/meson.build
@@ -1,4 +1,5 @@
-project('boosttest', 'cpp')
+project('boosttest', 'cpp',
+ default_options : ['cpp_std=c++11'])
# We want to have multiple separate configurations of Boost
# within one project. The need to be independent of each other.