Statistics
| Branch: | Tag: | Revision:

root / pithos-macos / pithos-macos-Prefix.pch @ 9990166e

History | View | Annotate | Download (345 Bytes)

1
//
2
// Prefix header for all source files of the 'pithos-macos' target in the 'pithos-macos' project
3
//
4

    
5
#ifdef __OBJC__
6
    #import <Cocoa/Cocoa.h>
7
#endif
8

    
9
#ifndef DEBUG_PITHOS
10
    #define DEBUG_PITHOS 0
11
#endif
12

    
13
#if DEBUG_PITHOS
14
    #define DLog(fmt, ...) NSLog(@"%s: " fmt, __PRETTY_FUNCTION__, ##__VA_ARGS__)
15
#else
16
    #define DLog(...)
17
#endif