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