diff options
| author | nyamatongwe <devnull@localhost> | 2009-06-26 06:36:19 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2009-06-26 06:36:19 +0000 | 
| commit | bbda5b6b2497c743d1a3a4f1edd32261ab8d15da (patch) | |
| tree | 10306ffe0cd209d8923da7dcff4c53248acfa764 | |
| parent | 8c06eb3efbfded72388bcd175241b3b60e4ec9bd (diff) | |
| download | scintilla-mirror-bbda5b6b2497c743d1a3a4f1edd32261ab8d15da.tar.gz | |
From scintilla-cocoa.
| -rw-r--r-- | cocoa/ScintillaFramework/Info.plist | 26 | ||||
| -rw-r--r-- | cocoa/ScintillaFramework/Scintilla_Prefix.pch | 7 | 
2 files changed, 33 insertions, 0 deletions
| diff --git a/cocoa/ScintillaFramework/Info.plist b/cocoa/ScintillaFramework/Info.plist new file mode 100644 index 000000000..13ee4cc2b --- /dev/null +++ b/cocoa/ScintillaFramework/Info.plist @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> +	<key>CFBundleDevelopmentRegion</key> +	<string>English</string> +	<key>CFBundleExecutable</key> +	<string>${EXECUTABLE_NAME}</string> +	<key>CFBundleIconFile</key> +	<string></string> +	<key>CFBundleIdentifier</key> +	<string>com.sun.${PRODUCT_NAME:identifier}</string> +	<key>CFBundleInfoDictionaryVersion</key> +	<string>6.0</string> +	<key>CFBundleName</key> +	<string>${PRODUCT_NAME}</string> +	<key>CFBundlePackageType</key> +	<string>FMWK</string> +	<key>CFBundleSignature</key> +	<string>????</string> +	<key>CFBundleVersion</key> +	<string>1.0</string> +	<key>NSPrincipalClass</key> +	<string></string> +</dict> +</plist> diff --git a/cocoa/ScintillaFramework/Scintilla_Prefix.pch b/cocoa/ScintillaFramework/Scintilla_Prefix.pch new file mode 100644 index 000000000..e987aa4cf --- /dev/null +++ b/cocoa/ScintillaFramework/Scintilla_Prefix.pch @@ -0,0 +1,7 @@ +// +// Prefix header for all source files of the 'Scintilla' target in the 'Scintilla' project. +// + +#ifdef __OBJC__ +    #import <Cocoa/Cocoa.h> +#endif | 
