Dip  0.92.4
SymConfig.h
Go to the documentation of this file.
1 /*
2  * Include file for the configuration of SYMPHONY.
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 __SYMPHONY_CONFIG_H__
21 #define __SYMPHONY_CONFIG_H__
22 
23 #ifdef HAVE_CONFIG_H
24 #ifdef SYMPHONY_BUILD
25 #include "config.h"
26 #else
27 #include "config_sym.h"
28 #endif
29 
30 #else /* HAVE_CONFIG_H */
31 
32 #ifdef SYMPHONY_BUILD
33 #include "config_default.h"
34 #else
35 #include "config_sym_default.h"
36 #endif
37 
38 #endif /* HAVE_CONFIG_H */
39 
40 #endif /*__SYMPHONY_CONFIG_H__*/