coin-Cgl
CglConfig.h
Go to the documentation of this file.
1 /*
2  * Include file for the configuration of Cgl.
3  *
4  * On systems where the code is configured with the configure script
5  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
6  * header file includes the automatically generated header file, and
7  * undefines macros that might configure with other Config.h files.
8  *
9  * On systems that are compiled in other ways (e.g., with the
10  * Developer Studio), a header files is included to define those
11  * macros that depend on the operating system and the compiler. The
12  * macros that define the configuration of the particular user setting
13  * (e.g., presence of other COIN packages or third party code) are set
14  * here. The project maintainer needs to remember to update this file
15  * and choose reasonable defines. A user can modify the default
16  * setting by editing this file here.
17  *
18  */
19 
20 #ifndef __CGLCONFIG_H__
21 
22 #ifdef HAVE_CONFIG_H
23 #include "config_cgl.h"
24 
25 /* undefine macros that could conflict with those in other config.h
26  files */
27 #undef PACKAGE
28 #undef PACKAGE_BUGREPORT
29 #undef PACKAGE_NAME
30 #undef PACKAGE_STRING
31 #undef PACKAGE_TARNAME
32 #undef PACKAGE_VERSION
33 #undef VERSION
34 
35 #else /* HAVE_CONFIG_H */
36 
37 /* include the COIN-wide system specific configure header */
38 #include "configall_system.h"
39 
40 /***************************************************************************/
41 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */
42 /***************************************************************************/
43 
44 /* Define to the debug sanity check level (0 is no test) */
45 #define COIN_CGL_CHECKLEVEL 0
46 
47 /* Define to the debug verbosity level (0 is no output) */
48 #define COIN_CGL_VERBOSITY 0
49 
50 /* Define to 1 if the Cbc package is used */
51 /* #define COIN_HAS_CBC 1 */
52 
53 /* Define to 1 if the Cgl package is used */
54 /* #define COIN_HAS_CGL 1 */
55 
56 /* Define to 1 if the Clp package is used */
57 #define COIN_HAS_CLP 1
58 
59 /* Define to 1 if the CoinUtils package is used */
60 #define COIN_HAS_COINUTILS 1
61 
62 /* Define to 1 if the Osi package is used */
63 #define COIN_HAS_OSI 1
64 
65 /* Define to 1 if the Vol package is used */
66 #define COIN_HAS_VOL 1
67 
68 #endif /* HAVE_CONFIG_H */
69 
70 #endif /*__HAVE_COINUTILS_CONFIG_H__*/