mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
71425850f6
Info.plist is needed to surpress the dock icon. Up to now, we need to have the file available at run-time. With this change, the contents of Info.plist are embedded in the executable at the linking stage, thus there is no need to deploy the Info.plist file anymore. Credit to Smokey Ardisson for the tip. http://code.google.com/p/phantomjs/issues/detail?id=528
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
|
<plist version="0.9">
|
|
<dict>
|
|
<key>CFBundleExecutable</key>
|
|
<string>phantomjs</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.phantomjs</string>
|
|
<key>LSUIElement</key>
|
|
<string>1</string>
|
|
</dict>
|
|
</plist>
|