comparison mac/finishup.sh @ 2446:b9d373d1ccf5

Add support for checking the application data directory for the images. Copy the images into the Mac application bundle so they can be found. Add iOS #ifdefs so it has font and file locations that can be found. Not entirely happy with the #ifdefs in the test program, may revisit.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 09 Apr 2021 19:10:30 +0000
parents 3784795a1e94
children 2934b2fdcd8e
comparison
equal deleted inserted replaced
2445:a773008c7c5d 2446:b9d373d1ccf5
3 3
4 if [ $PLATFORM = "Darwin" ] 4 if [ $PLATFORM = "Darwin" ]
5 then 5 then
6 mkdir -p dwtest.app/Contents/MacOS 6 mkdir -p dwtest.app/Contents/MacOS
7 mkdir -p dwtest.app/Contents/Resources 7 mkdir -p dwtest.app/Contents/Resources
8 mkdir -p dwtest.app/Contents/Resources/mac
8 9
9 cp -f $1/mac/Info.plist dwtest.app/Contents 10 cp -f $1/mac/Info.plist dwtest.app/Contents
10 cp -f $1/mac/PkgInfo dwtest.app/Contents 11 cp -f $1/mac/PkgInfo dwtest.app/Contents
12 cp -f $1/mac/file.png dwtest.app/Contents/Resources/mac
13 cp -f $1/mac/folder.png dwtest.app/Contents/Resources/mac
14 cp -f $1/image/test.png dwtest.app/Contents/Resources
11 cp -f dwtest dwtest.app/Contents/MacOS 15 cp -f dwtest dwtest.app/Contents/MacOS
12 # Check if there is a certificate to sign with... 16 # Check if there is a certificate to sign with...
13 if [ ! -f mac/key.crt ]; then 17 if [ ! -f mac/key.crt ]; then
14 if [ -f mac/key.rsa ]; then 18 if [ -f mac/key.rsa ]; then
15 # If not we generate a self-signed one for testing purposes 19 # If not we generate a self-signed one for testing purposes