mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-04 21:39:52 +08:00
add custom Info.plist (#1608)
This commit is contained in:
parent
e454ea6e61
commit
dd935b5f90
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,4 +3,3 @@
|
||||
.ccls
|
||||
compile_commands.json
|
||||
compile_flags.txt
|
||||
*.plist
|
||||
|
32
src/data/core/Info.plist
Normal file
32
src/data/core/Info.plist
Normal file
@ -0,0 +1,32 @@
|
||||
<?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>CFBundleExecutable</key>
|
||||
<string>vnote</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>3.0.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>3.0.0.2</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Created by VNoteX</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>vnote.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.vnotex.vnote</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.12</string>
|
||||
<key>NOTE</key>
|
||||
<string>Visit [GitHub VNote](https://github.com/vnotex/vnote) for details.</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
||||
<true/>
|
||||
<key>NSRequiresAquaSystemAppearance</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
@ -62,6 +62,8 @@ QMAKE_EXTRA_COMPILERS += rcc_binary
|
||||
OTHER_FILES += $$RCC_BINARY_SOURCES
|
||||
|
||||
macx {
|
||||
QMAKE_INFO_PLIST = data/core/Info.plist
|
||||
|
||||
# Process VTextEdit framework
|
||||
vte_lib_name = VTextEdit
|
||||
vte_lib_dir = $${OUT_PWD}/../libs/vtextedit/src/editor
|
||||
|
Loading…
x
Reference in New Issue
Block a user