Changeset 13219


Ignore:
Timestamp:
09/02/12 01:27:05 (13 years ago)
Author:
Eric.Larour
Message:

CHG: shielding krigging and kml modules from compile in adolc

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/m4/issm_options.m4

    r13080 r13219  
    11511151
    11521152        dnl Capabilities
     1153        dnl with-kml{{{
     1154        AC_ARG_WITH([kml],
     1155                AS_HELP_STRING([--with-kml = YES],[compile with kml capabilities (default is yes)]),
     1156                [KML=$withval],[KML=yes])
     1157        AC_MSG_CHECKING(for kml capability compilation)
     1158
     1159        if test "x$KML" = "xyes"; then
     1160                HAVE_KML=yes
     1161                AC_DEFINE([_HAVE_KML_],[1],[with kml capability])
     1162        else
     1163                HAVE_KML=no
     1164        fi
     1165        AM_CONDITIONAL([KML], [test x$HAVE_KML = xyes])
     1166        AC_MSG_RESULT($HAVE_KML)
     1167        dnl }}}
    11531168        dnl with-kriging{{{
    11541169        AC_ARG_WITH([kriging],
  • issm/trunk-jpl/src/modules/matlab/Makefile.am

    r13128 r13219  
    1 AM_CPPFLAGS = @DAKOTAINCL@ @MATLABINCL@ @PETSCINCL@ @MPIINCL@ @SPOOLESINCL@ @METISINCL@ @TRIANGLEINCL@ @CHACOINCL@ @SCOTCHINCL@ @SHAPELIBINCL@ @BOOSTINCL@ @PYTHONINCL@ @PYTHON_NUMPYINCL@
     1AM_CPPFLAGS = @DAKOTAINCL@ @MATLABINCL@ @PETSCINCL@ @MPIINCL@ @SPOOLESINCL@ @METISINCL@ @TRIANGLEINCL@ @CHACOINCL@ @SCOTCHINCL@ @SHAPELIBINCL@ @BOOSTINCL@ @PYTHONINCL@ @PYTHON_NUMPYINCL@ @ADOLCINCL@
    22
    33EXEEXT=$(MATLABWRAPPEREXT)
     
    1313                                   ElementConnectivity.la\
    1414                                   EnumToString.la\
    15                                    Exp2Kml.la\
    1615                                   HoleFiller.la\
    1716                                   InternalFront.la\
     
    2120                                   InterpFromMeshToGrid.la\
    2221                                   InterpFromMesh2d.la\
    23                                    KMLFileRead.la\
    24                                    KMLMeshWrite.la\
    25                                    KMLOverlay.la\
    26                                    Kml2Exp.la\
    27                                    Kriging.la\
    2822                                   Ll2xy.la\
    2923                                   NodeConnectivity.la\
     
    3226                                   PointCloudFindNeighbors.la\
    3327                                   PropagateFlagsFromConnectivity.la\
    34                                    Shp2Kml.la\
    3528                                   StringToEnum.la\
    3629                                   TriaSearch.la\
     
    4033                                   Xy2ll.la\
    4134                   Chaco.la
     35
     36if KRIGING
     37lib_LTLIBRARIES +=  Kriging.la
     38endif
     39if KML
     40lib_LTLIBRARIES +=  KMLFileRead.la\
     41                                   KMLMeshWrite.la\
     42                                   KMLOverlay.la\
     43                                   Shp2Kml.la\
     44                                   Exp2Kml.la\
     45                                   Kml2Exp.la
     46endif
    4247endif
     48
    4349#}}}
    4450#Flags and libraries {{{1
Note: See TracChangeset for help on using the changeset viewer.