[go: up one dir, main page]

File: config.h

package info (click to toggle)
coin3 3.1.3-2.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 48,368 kB
  • sloc: cpp: 314,329; ansic: 15,927; sh: 13,635; makefile: 8,772; perl: 2,149; lex: 1,302; lisp: 1,247; yacc: 184; xml: 175; sed: 68
file content (13 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (55)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef COIN_DEBUG
#error The define COIN_DEBUG needs to be defined to true or false
#endif

#ifndef COIN_INTERNAL
#error this is a private header file
#endif

#if COIN_DEBUG
#include "config-debug.h"
#else /* !COIN_DEBUG */
#include "config-release.h"
#endif /* !COIN_DEBUG */