ppc,
i386,
);
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
name = UB;
4D4E7BC5087804870051572B /* Development */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
name = Development;
4D4E7BC6087804870051572B /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
name = Deployment;
4D4E7BC7087804870051572B /* Default */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ MACOSX_DEPLOYMENT_TARGET = 10.3;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
};
name = Default;
--- /dev/null
+#!/bin/sh
+# This script localize the built application
+ cd macosx/i18n/
+export LNG=`ls *strings | sed 's/.strings//g' | sed 's/Localizable//g'`
+cd ../../$1/Contents/Resources
+for l in $LNG
+do
+ cp -r English.lproj $l.lproj
+ cp ../../../macosx/i18n/$l.strings $l.lproj/Localizable.strings
+done