Changeset 8260
- Timestamp:
- Apr 18, 2011, 9:33:05 PM (14 years ago)
- Location:
- code/branches/mac_osx
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/mac_osx/data/mac/Orxonox-Info.plist
r8090 r8260 7 7 <key>CFBundleExecutable</key> 8 8 <string>${EXECUTABLE_NAME}</string> 9 <key>CFBundleGetInfoString</key> 10 <string>Orxonox: The hottest space shooter ever to exist!</string> 9 11 <key>CFBundleIconFile</key> 10 12 <string>Icon.icns</string> … … 15 17 <key>CFBundleName</key> 16 18 <string>${PROJECT_NAME}</string> 19 <key>CFBundlePackageType</key> 20 <string>APPL</string> 21 <key>CFBundleShortVersionString</key> 22 <string>${ORXONOX_VERSION}, ${ORXONOX_VERSION_NAME}</string> 17 23 <key>CFBundleVersion</key> 18 24 <string>${ORXONOX_VERSION}</string> 19 <key>CFBundleShortVersionString</key> 20 <string>${ORXONOX_VERSION}, ${ORXONOX_VERSION_NAME}</string> 21 <key>CFBundleGetInfoString</key> 22 <string>Orxonox: The hottest space shooter ever to exist!</string> 25 <key>LSMinimumSystemVersion</key> 26 <string>10.5</string> 23 27 <key>NSHumanReadableCopyright</key> 24 28 <string>GPL version 2 or higher, and CC-BY-SA</string> 25 <key>CFBundlePackageType</key>26 <string>APPL</string>27 <key>LSMinimumSystemVersion</key>28 <string>10.5</string>29 29 <key>NSMainNibFile</key> 30 30 <string>MainMenu</string> 31 31 <key>NSPrincipalClass</key> 32 32 <string>NSApplication</string> 33 <key>CMSubmitURL</key> 34 <string></string> 35 <key>CMMaxReports</key> 36 <integer>100</integer> 33 37 </dict> 34 38 </plist> -
code/branches/mac_osx/src/CMakeLists.txt
r8259 r8260 175 175 # On Apple we need to link to AppKit, Foundation frameworks 176 176 TARGET_LINK_LIBRARIES(orxonox-main 177 cmcrashreporter_orxonox 177 178 "-framework AppKit" 178 179 "-framework Foundation" -
code/branches/mac_osx/src/Orxonox.cc
r8133 r8260 75 75 strCmdLine = strCmdLine + argv[i] + ' '; 76 76 #endif 77 77 78 // Use these statements to make Orxonox go crashycrash 79 //int* crashInt = NULL; 80 //COUT(0) << *crashInt << std::endl; 81 78 82 return orxonox::main(strCmdLine); 79 83 } -
code/branches/mac_osx/src/external/cmcrashreporter/CMCrashReporter.m
r8259 r8260 40 40 return array; 41 41 } else { 42 // Tiger Form et is AppName.crash.log42 // Tiger Format is AppName.crash.log 43 43 NSString *path = [[NSString stringWithFormat:@"~/Library/Logs/CrashReporter/%@.crash.log",[CMCrashReporterGlobal appName]] stringByExpandingTildeInPath]; 44 44 if ([fileManager fileExistsAtPath:path]) return [NSArray arrayWithObject:path]; -
code/branches/mac_osx/src/external/cmcrashreporter/CMakeLists.txt
r8259 r8260 53 53 SET(DEVBUNDLE_CURRENT_RESOURCES "${DEVBUNDLE_CURRENT_DIR}/Resources") 54 54 SET(DEVBUNDLE_DEFAULT_LANGFILE "English.lproj") 55 SET(DEVBUNDLE_NIB_FILE " MainMenu.nib")55 SET(DEVBUNDLE_NIB_FILE "CMCrashReporterWindow.nib") 56 56 57 57 # Create bundle folder structure … … 62 62 63 63 # Populate app with additional NIB file. 64 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/CMCrashReporterWindow.xib" "${DEVBUNDLE_CURRENT_RESOURCES}/${DEVBUNDLE_DEFAULT_LANGFILE}/CMCrashReporterWindow.xib" COPYONLY) 64 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/${DEVBUNDLE_NIB_FILE}/keyedobjects.nib" "${DEVBUNDLE_CURRENT_RESOURCES}/${DEVBUNDLE_DEFAULT_LANGFILE}/${DEVBUNDLE_NIB_FILE}/keyedobjects.nib" COPYONLY) 65 CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/${DEVBUNDLE_NIB_FILE}/designable.nib" "${DEVBUNDLE_CURRENT_RESOURCES}/${DEVBUNDLE_DEFAULT_LANGFILE}/${DEVBUNDLE_NIB_FILE}/designable.nib" COPYONLY) 66 65 67 66 68 ENDFOREACH(_subdir)
Note: See TracChangeset
for help on using the changeset viewer.