• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2013 Google Inc. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4{
5  'make_global_settings': [
6    ['CC', '/usr/bin/clang'],
7    ['CXX', '/usr/bin/clang++'],
8  ],
9  'targets': [
10    {
11      'target_name': 'c++98',
12      'type': 'executable',
13      'sources': [ 'c++98.cc', ],
14      'xcode_settings': {
15        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
16        'CLANG_CXX_LANGUAGE_STANDARD': 'c++98',
17      },
18    },
19    {
20      'target_name': 'c++11',
21      'type': 'executable',
22      'sources': [ 'c++11.cc', ],
23      'xcode_settings': {
24        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
25        'CLANG_CXX_LANGUAGE_STANDARD': 'c++0x',
26      },
27    },
28  ],
29}
30
31