~ubuntu-branches/ubuntu/oneiric/mozc/oneiric

« back to all changes in this revision

Viewing changes to protobuf/files/gtest/xcode/Config/DebugProject.xcconfig

  • Committer: Bazaar Package Importer
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2010-07-14 03:26:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100714032647-13qjisj6m8cm8jdx
Tags: 0.12.410.102-1
* New upstream release (Closes: #588971).
  - Add mozc-server, mozc-utils-gui and scim-mozc packages.
* Update debian/rules.
  Add --gypdir option to build_mozc.py.
* Update debian/control.
  - Bumped standards-version to 3.9.0.
  - Update description.
* Add mozc icon (Closes: #588972).
* Add patch which revises issue 18.
  ibus_mozc_issue18.patch
* kFreeBSD build support.
  support_kfreebsd.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
//  DebugProject.xcconfig
3
 
//
4
 
//  These are Debug Configuration project settings for the gtest framework and
5
 
//  examples. It is set in the "Based On:" dropdown in the "Project" info
6
 
//  dialog.
7
 
//  This file is based on the Xcode Configuration files in:
8
 
//  http://code.google.com/p/google-toolbox-for-mac/
9
 
// 
10
 
 
11
 
#include "General.xcconfig"
12
 
 
13
 
// No optimization
14
 
GCC_OPTIMIZATION_LEVEL = 0
15
 
 
16
 
// Deployment postprocessing is what triggers Xcode to strip, turn it off
17
 
DEPLOYMENT_POSTPROCESSING = NO
18
 
 
19
 
// Dead code stripping off
20
 
DEAD_CODE_STRIPPING = NO
21
 
 
22
 
// Debug symbols should be on obviously
23
 
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
24
 
 
25
 
// Define the DEBUG macro in all debug builds
26
 
OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1
27
 
 
28
 
// These are turned off to avoid STL incompatibilities with client code
29
 
// // Turns on special C++ STL checks to "encourage" good STL use
30
 
// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS