mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
20 lines
318 B
Plaintext
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
|