CMake/Source/WXDialog
Andy Cedilnik 74eb17767d Fix location of test 2003-05-03 16:15:38 -04:00
..
CMakeIcon.gif Remove background and make bigger 2002-11-06 14:53:14 -05:00
CMakeIcon.icns Add Mac icon 2002-11-06 14:56:54 -05:00
CMakeIcon.xpm Start adding CMake icon 2002-11-06 14:33:59 -05:00
CMakeLists.txt Fix location of test 2003-05-03 16:15:38 -04:00
ReadMe.Mac.txt Add readme for mac 2002-11-07 09:01:19 -05:00
cmWXCacheProperty.cxx ENH: Added reference to Copyright.txt. Removed old reference to ITK copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. 2002-10-23 18:03:27 -04:00
cmWXCacheProperty.h ENH: Added reference to Copyright.txt. Removed old reference to ITK copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. 2002-10-23 18:03:27 -04:00
cmWXCommandLineInfo.cxx ENH: Added reference to Copyright.txt. Removed old reference to ITK copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. 2002-10-23 18:03:27 -04:00
cmWXCommandLineInfo.h ENH: Added reference to Copyright.txt. Removed old reference to ITK copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. 2002-10-23 18:03:27 -04:00
cmWXMainFrame.cxx Remove warning about shadowing variable 2003-02-25 12:36:42 -05:00
cmWXMainFrame.h Add progress reporting 2002-11-14 18:18:49 -05:00
wxCMakeSetup.cxx Add progress reporting 2002-11-14 18:18:49 -05:00
wxincludes.h Add missing include 2002-09-20 15:45:33 -04:00

ReadMe.Mac.txt

Hi All,

So, here is a short description on how I got installation package on mac osx.

1. Build package.
2. Copy package and related files to the following directory structure:

./Package_Root/Applications/MyApp.app/Contents/Info.plist
./Package_Root/Applications/MyApp.app/Contents/MacOS
./Package_Root/Applications/MyApp.app/Contents/MacOS/MyAppExec
./Package_Root/Applications/MyApp.app/Contents/PkgInfo
./Package_Root/Applications/MyApp.app/Contents/Resources/MyAppIcon.icns
./Package_Root/Applications/MyApp.app/Contents/Resources/MyAppResources.rsrc
./Package_Root/usr/share/somedata
./Package_Root/usr/bin/some_utility
./Resources/License.txt
./Resources/ReadMe.txt
./Resources/Welcome.txt

The file PkgInfo contains "APPL????"  The file Info.plist contains
package instructions. I would suggest looking at Info.plist.in in
wxWindows and modify it by putting your info in.  MyAppIcon.icns is an
icon created by IconComposer in /Developmer/Applications.
MyAppResources.rsrc is a compiled resources file. I used the one from
wxWindows and it seems to be working fine. Some mac person could
explain this. Make sure that Info.plist contains:

        <key>CFBundleIconFile</key>
        <string>MyAppIcon.icns</string>

This will tell it which icon to use.

The ./Package_Root/usr/share/somedata and
./Package_Root/usr/bin/some_utility are some extra data that your
application is using. For example they can be a command line version
of the application and some common files. 

The ./Resources directory contains resources used during
installation. The names of files describe what should go in. They can
be rtf, txt...

3. Create package using PackageMaker. 

Fire up PackageMaker from /Developmer/Applications. Fill all the
entries. Most of them are straight forward. Package root is
./Package_Root. Resources directory is ./Resources. If your
application needs to write to /usr (or to some other place beside
/Applications, then make sure to enable authentication. After you fill
all the entries, create package. This will create a directory on your
disk containing a whole lot of junk. Now you need to package this
directory.

4. Create a disk image.

Run Disk Copy from /Applications/Utilities. The easiest way of
creating disk image is to first create empty folder, copy all the
files in and then tell Disk Copy to create disk image from folder. So,
create folder MyApp, copy in MyApp.pkg and create package.

Now you are done. This will create one file, which you can copy around.

So, what is missing is how to make application icon show in the
finder. I can make it show when running application, but not when I am
looking at application. Even if I ask for preview.

I guess somebody else will have to answer this.

Good luck.

                        Andy