Files
gitx/GitX_Prefix.pch
T
2011-04-05 11:39:01 -07:00

20 lines
318 B
Plaintext

//
// Prefix header for all source files of the 'GitTest' target in the 'GitTest' project
//
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
#ifndef DLog
#ifdef DEBUG
# define DLog(...) NSLog(__VA_ARGS__)
#else
# define DLog(...) /* */
#endif
#endif
#ifndef ALog
#define ALog(...) DLog(__VA_ARGS__)
#endif