Changeset 8260 for code/branches/mac_osx/src
- Timestamp:
- Apr 18, 2011, 9:33:05 PM (14 years ago)
- Location:
- code/branches/mac_osx/src
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
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.