# HG changeset patch # User John Tsiombikas # Date 1345344658 -10800 # Node ID 6a650b3b7084a9e5ee6ebaa53426d1090aadd290 # Parent e95462632f9ad0fbe991cfbff224f9d9002724f3 mac crap diff -r e95462632f9a -r 6a650b3b7084 prototype/build/macapp.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/prototype/build/macapp.mk Sun Aug 19 05:50:58 2012 +0300 @@ -0,0 +1,15 @@ +.PHONY: macapp +macapp: $(bin).app + +$(bin).app: $(bin) + mkdir -p $(bin).app/Contents/MacOS $(bin).app/Contents/Frameworks + cd $(bin).app/Contents && \ + cp ../../build/macinfo.plist Info.plist + cp $(bin) $(bin).app/Contents/MacOS/$(bin) + + +#cd $(bin).app/Contents/Frameworks && \ +# rm -f libglory.dylib && \ +# ln -s ../../../../libglory.dylib . +# install_name_tool -change libglory.dylib @execitable_path/../Frameworks/libglory.dylib \ +# $(bin).app/Contents/MacOS/$(bin) diff -r e95462632f9a -r 6a650b3b7084 prototype/build/macinfo.plist --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/prototype/build/macinfo.plist Sun Aug 19 05:50:58 2012 +0300 @@ -0,0 +1,16 @@ + + + + + CFBundleDevelopmentRegionGlobal + CFBundleExecutableproto + CFBundleDisplayNameprototype + CFBundleNameDungeon Crawler Prototype + CFBundleIdentifiercom.mindlapse.dcrawl + CFBundlePackageTypeAPPL + CFBundleSignaturecglt + CFBundleShortVersionString0.1 + CFBundleVersion0.1 + CFBundleInfoDictionaryVersion6.0 + +