Home | History | Annotate | Download | only in clang-cxx-library
      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': 'libc++',
     12       'type': 'executable',
     13       'sources': [ 'libc++.cc', ],
     14       'xcode_settings': {
     15         'CC': 'clang',
     16         # libc++ requires OS X 10.7+.
     17         'MACOSX_DEPLOYMENT_TARGET': '10.7',
     18         'CLANG_CXX_LIBRARY': 'libc++',
     19       },
     20     },
     21     {
     22       'target_name': 'libstdc++',
     23       'type': 'executable',
     24       'sources': [ 'libstdc++.cc', ],
     25       'xcode_settings': {
     26         'CC': 'clang',
     27         'CLANG_CXX_LIBRARY': 'libstdc++',
     28       },
     29     },
     30   ],
     31 }
     32 
     33