Last change
on this file since 12168 was 12168, checked in by cborstad, 13 years ago |
merged trunk-jpl into branch through revision 12167
|
File size:
634 bytes
|
Line | |
---|
1 | /* \file toolkits.h
|
---|
2 | * \brief: this API allows use of external packages, provides patches, etc ...
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef _TOOLKITS_H_
|
---|
6 | #define _TOOLKITS_H_
|
---|
7 |
|
---|
8 | #ifdef HAVE_CONFIG_H
|
---|
9 | #include <config.h>
|
---|
10 | #else
|
---|
11 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | #ifdef _HAVE_PYTHON_
|
---|
15 | #include "./python/pythonincludes.h"
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | #ifdef _HAVE_PETSC_
|
---|
19 | #include "./petsc/petscincludes.h"
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | #ifdef _HAVE_MPI_
|
---|
23 | #include "./mpi/mpiincludes.h"
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #ifdef _HAVE_METIS_
|
---|
27 | #include "./metis/metisincludes.h"
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #include "./triangle/triangleincludes.h"
|
---|
31 | #include "./toolkitsenums.h"
|
---|
32 | #include "./issm/issmtoolkit.h"
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.