Dip-All  0.91.0
DecompConfig.h
Go to the documentation of this file.
1 //===========================================================================//
2 // This file is part of the DIP Solver Framework. //
3 // //
4 // DIP is distributed under the Eclipse Public License as part of the //
5 // COIN-OR repository (http://www.coin-or.org). //
6 // //
7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) //
8 // //
9 // Conceptual Design: Matthew Galati, SAS Institute Inc. //
10 // Ted Ralphs, Lehigh University //
11 // //
12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs //
13 // All Rights Reserved. //
14 //===========================================================================//
15 
16 /*
17  * Include file for the configuration of Decomp.
18  *
19  * On systems where the code is configured with the configure script
20  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
21  * header file includes the automatically generated header file, and
22  * undefines macros that might configure with other Config.h files.
23  *
24  * On systems that are compiled in other ways (e.g., with the
25  * Developer Studio), a header files is included to define those
26  * macros that depend on the operating system and the compiler. The
27  * macros that define the configuration of the particular user setting
28  * (e.g., presence of other COIN packages or third party code) are set
29  * here. The project maintainer needs to remember to update this file
30  * and choose reasonable defines. A user can modify the default
31  * setting by editing this file here.
32  *
33  */
34 
35 #ifndef __DIPCONFIG_H__
36 
37 #ifdef HAVE_CONFIG_H
38 #ifdef DIP_BUILD
39 #include "config.h"
40 #else
41 #include "config_dip.h"
42 #endif
43 
44 #else /* HAVE_CONFIG_H */
45 
46 #ifdef DIP_BUILD
47 #include "config_default.h"
48 #else
49 #include "config_dip_default.h"
50 #endif
51 
52 #endif /* HAVE_CONFIG_H */
53 
54 #endif /*__DIPCONFIG_H__*/