Sierra Toolkit  Version of the Day
stk_config.h
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2010 Sandia Corporation. */
3 /* Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive */
4 /* license for use of this work by or on behalf of the U.S. Government. */
5 /* Export of this program may require a license from the */
6 /* United States Government. */
7 /*------------------------------------------------------------------------*/
8 
9 #ifndef stk_util_config_h
10 #define stk_util_config_h
11 
12 #ifdef STK_BUILT_IN_SIERRA
13 #define STK_HAS_MPI
14 #else
15 // This file gets created by cmake during a Trilinos build
16 // and will not be present in a sierra build using bjam or associated wrappers
17 #include <STKClassic_config.h>
18 #ifdef HAVE_MPI
19 #define STK_HAS_MPI
20 #endif
21 #endif
22 
23 #define STK_PACKAGE stk
24 #define STK_HAS_SNL_EXODUSII
25 
26 #endif /* stk_util_config_h */