File: cppdebughelper.h.cmake

package info (click to toggle)
kdevelop 4%3A4.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 18,360 kB
  • ctags: 11,484
  • sloc: cpp: 105,371; python: 522; ansic: 488; lex: 422; sh: 139; ruby: 120; makefile: 51; xml: 42; php: 12
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