OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2008 The Chromium Authors. 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 #include "../build/staticlib.xcconfig" |
| 6 |
| 7 // We need to compile everything in this target as objective-C++ in order to |
| 8 // avoid linker issues with parameters declared sometimes as |void*| (from C++) |
| 9 // and other times as |id| (from Objective-C). However, we can't set this |
| 10 // globally because some things (such as icu or other 3rd-party libraries) can't |
| 11 // build this way. |
| 12 GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp |
OLD | NEW |