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-Common.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-Common.xcconfig')
-rw-r--r-- | macosx/Wish-Common.xcconfig | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/macosx/Wish-Common.xcconfig b/macosx/Wish-Common.xcconfig new file mode 100644 index 0000000..1500f88 --- /dev/null +++ b/macosx/Wish-Common.xcconfig @@ -0,0 +1,47 @@ +// +// Wish-Common.xcconfig -- +// +// This file contains the Xcode build settings comon to all +// 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-Common.xcconfig,v 1.1 2007/01/28 01:42:16 das Exp $ +// + +HEADER_SEARCH_PATHS = $(TK_SRCROOT)/generic $(TK_SRCROOT)/xlib $(DERIVED_FILE_DIR)/tcl $(DERIVED_FILE_DIR)/tk $(HEADER_SEARCH_PATHS) +REZ_SEARCH_PATHS = $(TK_SRCROOT)/generic $(TCL_SRCROOT)/generic $(REZ_SEARCH_PATHS) +OTHER_LDFLAGS = -headerpad_max_install_names -sectcreate __TEXT __tk_rsrc $(REZ_COLLECTOR_DIR)/$(PRODUCT_NAME).rsrc $(OTHER_LDFLAGS) +INSTALL_PATH = "$(BINDIR)" +GCC_PREFIX_HEADER = $(DERIVED_FILE_DIR)/tk/tkConfig.h +OTHER_CFLAGS = -imacros $(DERIVED_FILE_DIR)/tcl/tclConfig.h $(OTHER_CFLAGS) +GCC_GENERATE_DEBUGGING_SYMBOLS = YES +GCC_NO_COMMON_BLOCKS = YES +GCC_DYNAMIC_NO_PIC = YES +WARNING_CFLAGS_GCC3 = -Wall -Wno-implicit-int -Wno-unused-parameter -Wno-deprecated-declarations $(WARNING_CFLAGS) +WARNING_CFLAGS = -Wextra -Wno-missing-field-initializers $(WARNING_CFLAGS_GCC3) +REZ_RESOURCE_MAP_READ_ONLY = YES +APPLICATION_INSTALL_PATH = /Applications/Utilities +BINDIR = $(PREFIX)/bin +CFLAGS = $(CFLAGS) +CPPFLAGS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_TARGET) $(CPPFLAGS) +FRAMEWORK_INSTALL_PATH = /Library/Frameworks +INCLUDEDIR = $(PREFIX)/include +LIBDIR = $(PREFIX)/lib +MANDIR = $(PREFIX)/man +PER_ARCH_CFLAGS_ppc = -mcpu=G3 -mtune=G4 $(PER_ARCH_CFLAGS_ppc) +PREFIX = /usr/local +TCL_BUILD_DIR = $(OBJROOT)/../tcl/Tcl.build/$(CONFIGURATION)/Tcl.build/Objects +TCL_CONFIGURE_ARGS = --enable-threads +TCL_FRAMEWORK_DIR = $(SYMROOT)/../tcl/$(CONFIGURATION) +TCL_LIBRARY = $(LIBDIR)/tcl$(VERSION) +TCL_PACKAGE_PATH = "$(LIBDIR)" +TCL_SRCROOT = $(SRCROOT)/../../tcl +TCL_DEFS = HAVE_TCL_CONFIG_H +TK_LIBRARY = $(LIBDIR)/tk$(VERSION) +TK_SRCROOT = $(SRCROOT)/../../tk +TK_DEFS = HAVE_TK_CONFIG_H TCL_NO_DEPRECATED +VERSION = 8.5 |