diff options
author | das <das> | 2007-01-28 01:42:16 (GMT) |
---|---|---|
committer | das <das> | 2007-01-28 01:42:16 (GMT) |
commit | dcabf7ac6e394c47766a5a81167c4ce83c3006a6 (patch) | |
tree | debbb84339a4e6b374780354952734fc2be550a7 /macosx/Wish-Debug.xcconfig | |
parent | b03647d3c8be357389770831d31ab255ef96617a (diff) | |
download | tk-dcabf7ac6e394c47766a5a81167c4ce83c3006a6.zip tk-dcabf7ac6e394c47766a5a81167c4ce83c3006a6.tar.gz tk-dcabf7ac6e394c47766a5a81167c4ce83c3006a6.tar.bz2 |
* macosx/Wish.xcodeproj/project.pbxproj: extract build settings that
* macosx/Wish.xcodeproj/default.pbxuser: were common to multiple
* macosx/Wish-Common.xcconfig (new file): configurations into external
* macosx/Wish-Debug.xcconfig (new file): xcconfig files; add extra
* macosx/Wish-Release.xcconfig (new file): configurations for building
with SDKs; convert legacy jam-based 'Tk' target to native target with
single script phase; correct syntax of build setting references to use
$() throughout; remove unused tcltest sources from 'tktest' target.
* macosx/README: document new Wish.xcodeproj configurations; other
minor updates/corrections.
* generic/tk.h: update location of version numbers in macosx files.
* macosx/Wish.xcode/project.pbxproj: restore 'tktest' target to working
* macosx/Wish.xcode/default.pbxuser: order by replicating applicable
changes to Wish.xcodeproj since 2006-07-20.
Diffstat (limited to 'macosx/Wish-Debug.xcconfig')
-rw-r--r-- | macosx/Wish-Debug.xcconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/macosx/Wish-Debug.xcconfig b/macosx/Wish-Debug.xcconfig new file mode 100644 index 0000000..14e80fd --- /dev/null +++ b/macosx/Wish-Debug.xcconfig @@ -0,0 +1,22 @@ +// +// Wish-Debug.xcconfig -- +// +// This file contains the Xcode build settings for all Debug +// project configurations in Wish.xcodeproj. +// +// Copyright (c) 2007 Daniel A. Steffen <das@users.sourceforge.net> +// +// See the file "license.terms" for information on usage and redistribution +// of this file, and for a DISCLAIMER OF ALL WARRANTIES. +// +// RCS: @(#) $Id: Wish-Debug.xcconfig,v 1.1 2007/01/28 01:42:16 das Exp $ +// + +#include "Wish-Common.xcconfig" + +DEBUG_INFORMATION_FORMAT = dwarf +DEPLOYMENT_POSTPROCESSING = NO +GCC_OPTIMIZATION_LEVEL = 0 +GCC_PREPROCESSOR_DEFINITIONS = DEBUG_ASSERT_PRODUCTION_CODE=0 $(TCL_DEFS) $(TK_DEFS) $(GCC_PREPROCESSOR_DEFINITIONS) +CONFIGURE_ARGS = --enable-symbols $(TCL_CONFIGURE_ARGS) $(CONFIGURE_ARGS) +MAKE_TARGET = develop |