#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Fri, 24 Feb 2017 12:02:17 +0100
changeset 21569 912c8efa5856
parent 21568 34def6c3e907
child 21570 884bfe3dd111
#OTHER by cg osx file generation
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Feb 24 12:02:15 2017 +0100
+++ b/ProjectDefinition.st	Fri Feb 24 12:02:17 2017 +0100
@@ -1375,7 +1375,7 @@
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameOSX'.
         s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'.
-        s nextPutLine:'     This is used to create the info.plist file"'.
+        s nextPutLine:'     This is used to create the osx/Info.plist file"'.
         s cr;
         nextPutLine:'    ^ nil';
         nextPutLine:'    " ^ self applicationName "'.
@@ -1387,6 +1387,7 @@
     "
 
     "Created: / 18-08-2006 / 16:21:01 / cg"
+    "Modified: / 24-02-2017 / 11:55:32 / cg"
 !
 
 applicationIconFileNameWindows_code
@@ -3545,10 +3546,12 @@
     (filename = 'loadAll') ifTrue:[
         ^ self generate_loadAll
     ].
+    (filename = 'osx/Info.plist') ifTrue:[
+        ^ self generate_osx_info_dot_plist
+    ].
     self error:('File "%1" not appropriate (not generated) for this type of project.' bindWith:filename)
 
-    "Modified: / 21-12-2010 / 11:01:10 / cg"
-    "Modified (format): / 21-01-2012 / 12:31:40 / cg"
+    "Modified: / 24-02-2017 / 11:53:18 / cg"
 !
 
 generateFile:filename in: directory