J'ai 2 icones, une pour mes fichiers .monAppliExt, et une icone pour mon Bundle monAppli.app

Y a t il dans le .pList quelquechose qui fasse prendre qux fichiers l'icone de l'appli ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
	<key>CFBundleIconFile</key>
		<string>icnapp.icns</string>
	<key>CFBundlePackageType</key>
		<string>APPL</string>
	<key>CFBundleGetInfoString</key>
		<string>Created with Qt by LMillot, HBernard, FLepercque for HD3D</string>
	<key>CFBundleSignature</key>
		<string>????</string>
	<key>CFBundleExecutable</key>
		<string>Soundlab</string>
	<key>NOTE</key>
		<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
	<key>CFBundleVersion</key>
        <string>1.0</string>
		
	<key>CFBundleDocumentTypes</key>
        <array>
            <dict>
                <key>CFBundleTypeExtensions</key>
                <array>
                    <string>monextension</string>
                </array>
                <key>CFBundleTypeIconFile</key>
                <string>icnfil.icns</string>
                <key>CFBundleTypeMIMETypes</key>
                <array>
                    <string>text/x-monextension</string>
                </array>
                <key>CFBundleTypeName</key>
                <string>monAPP file</string>
                <key>CFBundleTypeRole</key>
                <string>monAPP</string>
                <key>LSIsAppleDefaultForType</key>
                <true/>
            </dict>
        </array>
    
</dict>
</plist>