Changeset 8356
- Timestamp:
- Apr 28, 2011, 4:29:37 PM (14 years ago)
- Location:
- code/branches/mac_osx2
- Files:
-
- 7 edited
- 14 copied
Legend:
- Unmodified
- Added
- Removed
-
code/branches/mac_osx2
- Property svn:mergeinfo changed
/code/branches/mac_osx merged: 8259-8260,8262
- Property svn:mergeinfo changed
-
code/branches/mac_osx2/cmake/tools/TargetUtilities.cmake
r8351 r8356 235 235 # Don't compile header files 236 236 FOREACH(_file ${_${_target_name}_files}) 237 IF(NOT _file MATCHES "\\.(c|cc|cpp|cxx|m m)$")237 IF(NOT _file MATCHES "\\.(c|cc|cpp|cxx|m|mm)$") 238 238 SET_SOURCE_FILES_PROPERTIES(${_file} PROPERTIES HEADER_FILE_ONLY TRUE) 239 239 ENDIF() -
code/branches/mac_osx2/data/mac/Orxonox-Info.plist
r8351 r8356 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_osx2/src/CMakeLists.txt
r8351 r8356 196 196 # Apple Mac OS X specific build settings 197 197 IF(APPLE) 198 # On Apple we need to link to AppKit andFoundation frameworks198 # On Apple we need to link to AppKit, Foundation frameworks 199 199 TARGET_LINK_LIBRARIES(orxonox-main 200 cmcrashreporter_orxonox 200 201 "-framework AppKit" 201 202 "-framework Foundation" 203 "-framework CoreFoundation" 202 204 ) 203 205 -
code/branches/mac_osx2/src/Orxonox.cc
r8351 r8356 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_osx2/src/OrxonoxMac.mm
r8351 r8356 28 28 29 29 #import "OrxonoxMac.h" 30 #import <cmcrashreporter/CMCrashReporter.h> 30 31 31 32 static int argc_s = 0; … … 46 47 - (void)applicationDidFinishLaunching:(NSNotification *)notification 47 48 { 49 // This call initializes the crash reporter, which sends crash reports to the developers 50 [CMCrashReporter check]; 51 48 52 exit(main_mac(argc_s, argv_s)); 49 53 } -
code/branches/mac_osx2/src/external/CMakeLists.txt
r8351 r8356 23 23 ADD_SUBDIRECTORY(bullet) 24 24 ADD_SUBDIRECTORY(cpptcl) 25 ADD_SUBDIRECTORY(cmcrashreporter) 25 26 ADD_SUBDIRECTORY(enet) 26 27 ADD_SUBDIRECTORY(loki)
Note: See TracChangeset
for help on using the changeset viewer.