FLOPC++
FlopCppConfig.h
Go to the documentation of this file.
1 /*
2  * Include file for the configuration of Cbc.
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 __FLOPCPPCONFIG_H__
21 
22 #ifdef HAVE_CONFIG_H
23 #include "config_flopcpp.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_FLOPCPP_CHECKLEVEL 0
46 
47 /* Define to 1 if the FlopCpp package is used */
48 #define COIN_HAS_FLOPCPP 1
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 /* Define to 1 if the Cplex package is used */
69 /* #undef COIN_HAS_CPX */
70 
71 /* Define to 1 if the Dylp package is used */
72 /* #undef COIN_HAS_DYLP */
73 
74 /* Define to 1 if the FortMP package is used */
75 /* #undef COIN_HAS_FMP */
76 
77 /* Define to 1 if the Glpk package is used */
78 /* #undef COIN_HAS_GLPK */
79 
80 /* Define to 1 if the Mosek package is used */
81 /* #undef COIN_HAS_MSK */
82 
83 /* Define to 1 if the Osl package is used */
84 /* #undef COIN_HAS_OSL */
85 
86 /* Define to 1 if the Soplex package is used */
87 /* #undef COIN_HAS_SPX */
88 
89 /* Define to 1 if the Sym package is used */
90 /* #undef COIN_HAS_SYM */
91 
92 /* Define to 1 if the Xpress package is used */
93 /* #undef COIN_HAS_XPR */
94 
95 #endif /* HAVE_CONFIG_H */
96 
97 #endif /*__HAVE_COINUTILS_CONFIG_H__*/