OLD | NEW |
(Empty) | |
| 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 'targets': [ |
| 6 { |
| 7 'target_name': 'c++98', |
| 8 'type': 'executable', |
| 9 'sources': [ 'c++98.cc', ], |
| 10 'xcode_settings': { |
| 11 'CLANG_CXX_LANGUAGE_STANDARD': 'c++98', |
| 12 }, |
| 13 }, |
| 14 { |
| 15 'target_name': 'c++11', |
| 16 'type': 'executable', |
| 17 'sources': [ 'c++11.cc', ], |
| 18 'xcode_settings': { |
| 19 'CLANG_CXX_LANGUAGE_STANDARD': 'c++0x', |
| 20 }, |
| 21 }, |
| 22 ], |
| 23 } |
| 24 |
OLD | NEW |