Ignore:
Timestamp:
02/14/18 08:41:38 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: better way to deal with BAMG compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/modules/InterpFromMeshToMesh2dx/InterpFromMeshToMesh2dx.cpp

    r22252 r22418  
    77#include "../../toolkits/toolkits.h"
    88#include "../../classes/classes.h"
     9
     10#ifdef _HAVE_BAMG_
    911#include "../../bamg/bamgobjects.h"
    10 
    1112using namespace bamg;
    1213using namespace std;
     14#endif
    1315
    1416int InterpFromMeshToMesh2dx(double** pdata_interp,int* index_data,double* x_data,double* y_data,int nods_data,int nels_data,
    1517                        double* data,int M_data,int N_data,double* x_interp,double* y_interp,int N_interp,Options* options){
     18
     19        #ifdef _HAVE_BAMG_
    1620
    1721        /*Output*/
     
    172176        xDelete<int>(connectivity);
    173177        *pdata_interp=data_interp;
     178
     179        #else
     180        _error_("Cannot interpolate without bamg support");
     181        #endif
    174182        return 1;
    175183}
Note: See TracChangeset for help on using the changeset viewer.