Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 18, 2011, 7:14:18 PM (13 years ago)
Author:
youngk
Message:

Integrating automatic crash reporter. Does not work atm.

Location:
code/branches/mac_osx/src
Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/mac_osx/src/CMakeLists.txt

    r8135 r8259  
    173173# Apple Mac OS X specific build settings
    174174IF(APPLE)
    175   # On Apple we need to link to AppKit and Foundation frameworks
     175  # On Apple we need to link to AppKit, Foundation frameworks
    176176  TARGET_LINK_LIBRARIES(orxonox-main
    177177    "-framework AppKit"
    178178    "-framework Foundation"
     179    "-framework CoreFoundation"
    179180  )
    180181
  • code/branches/mac_osx/src/OrxonoxMac.mm

    r8133 r8259  
    2828
    2929#import "OrxonoxMac.h"
     30#import <cmcrashreporter/CMCrashReporter.h>
    3031
    3132static int argc_s = 0;
     
    4647- (void)applicationDidFinishLaunching:(NSNotification *)notification
    4748{
     49    // This call initializes the crash reporter, which sends crash reports to the developers
     50    [CMCrashReporter check];
     51   
    4852    exit(main_mac(argc_s, argv_s));
    4953}
  • code/branches/mac_osx/src/external/CMakeLists.txt

    r7459 r8259  
    3434ADD_SUBDIRECTORY(bullet)
    3535ADD_SUBDIRECTORY(cpptcl)
     36ADD_SUBDIRECTORY(cmcrashreporter)
    3637ADD_SUBDIRECTORY(enet)
    3738ADD_SUBDIRECTORY(loki)
Note: See TracChangeset for help on using the changeset viewer.