Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2011-10-14 21:27:55 +0400
committerJens Verwiebe <info@jensverwiebe.de>2011-10-14 21:27:55 +0400
commitafcf581fb06920c415ca9d1c23cdfb235274d323 (patch)
tree929990796ba4660fd30bdf98de6b79a5e3afa66e /source/darwin
parent9f6d67484cc6fbb9db575ecff2a1ee8c1768d1b5 (diff)
OSX: commit the needed steps for compiling with gcc 4.6.1 and OMP_NUM_THREADS env variable setting
Diffstat (limited to 'source/darwin')
-rw-r--r--source/darwin/blender.app/Contents/Info.plist17
1 files changed, 8 insertions, 9 deletions
diff --git a/source/darwin/blender.app/Contents/Info.plist b/source/darwin/blender.app/Contents/Info.plist
index 23941d91075..a25c629ce68 100644
--- a/source/darwin/blender.app/Contents/Info.plist
+++ b/source/darwin/blender.app/Contents/Info.plist
@@ -1,33 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
-<plist version="0.9">
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
<dict>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
-
<key>CFBundleExecutable</key>
<string>blender</string>
-
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
-
<key>CFBundleIconFile</key>
<string>blender icon.icns</string>
-
<key>CFBundleName</key>
<string>Blender</string>
<key>CFBundleIdentifier</key>
<string>org.blenderfoundation.blender</string>
-
<key>CFBundleVersion</key>
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}, Blender Foundation</string>
<key>CFBundleShortVersionString</key>
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
<key>CFBundleGetInfoString</key>
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}, Blender Foundation</string>
-
<key>CFBundleDocumentTypes</key>
<array>
<dict>
@@ -46,8 +40,13 @@
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSIsAppleDefaultForType</key>
- <true/>
+ <true/>
</dict>
</array>
+ <key>LSEnvironment</key>
+ <dict>
+ <key>OMP_NUM_THREADS</key>
+ <string>2</string>
+ </dict>
</dict>
</plist>