File: cppdebughelper.h.cmake

package info (click to toggle)
kdevelop 4%3A4.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,844 kB
  • sloc: cpp: 91,758; python: 1,095; lex: 422; ruby: 120; sh: 114; xml: 42; makefile: 38
file content (18 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#cmakedefine DEBUG_UI_LOCKUP 
#cmakedefine DEBUG 

//When this is enabled, the include-path-resolver will always be issued,
//and the returned include-path compared to the one returned by the build-manager.
//Set it to 1 to debug build-managers.
#cmakedefine DEBUG_INCLUDE_PATHS 1

#cmakedefine DEBUG_LEXERCACHE
#cmakedefine DEBUG_UPDATE_MATCHING
#cmakedefine DEBUG_UPDATE_RANGES

#ifdef DEBUG
#define ifDebug(x) x
#else
#define ifDebug(x)
#endif