After creating a project package from the project options, I get a Project1 (.app) that I can double click and execute ok. When I try to package it and deploy it doesn’t work. It looks as if the packaging is handled ok and the installation looks ok, but I can’t find the installed application. What am I missing?
For ease of development, the .app bundle has a symbolic link that points to the actual executable, which is in the same folder as the rest of your project. When ready to deploy, replace the link with the executable. For example:
rm myprogram.app/contents/macos/myprogram
cp -p myprogram myprogram.app/contents/macos/myprogram
Let me know if that doesn't fix it for you.
Thanks.
-Phil