Changeset 9788


Ignore:
Timestamp:
09/13/11 09:39:54 (14 years ago)
Author:
Eric.Larour
Message:

Took out Dakota from Makefile.am in serial mode -> new compilation scheme.
For mex modules, only compile Dakota modules when requested.

Location:
issm/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Makefile.am

    r9785 r9788  
    155155                                        ./objects/Loads/Friction.h\
    156156                                        ./objects/Loads/Friction.cpp\
    157                                         ./objects/DakotaPlugin.h\
    158                                         ./objects/DakotaPlugin.cpp\
    159157                                        ./objects/Node.h\
    160158                                        ./objects/Node.cpp\
     
    572570                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.h\
    573571                                        ./modules/InputUpdateFromConstantx/InputUpdateFromConstantx.cpp\
    574                                         ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\
    575                                         ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\
    576572                                        ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.h\
    577573                                        ./modules/InputUpdateFromSolutionx/InputUpdateFromSolutionx.cpp\
    578                                         ./modules/DakotaResponsesx/DakotaResponsesx.h\
    579                                         ./modules/DakotaResponsesx/DakotaResponsesx.cpp\
    580574                                        ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.h\
    581575                                        ./modules/GetSolutionFromInputsx/GetSolutionFromInputsx.cpp\
     
    584578                                        ./modules/InputUpdateFromVectorx/InputUpdateFromVectorx.h\
    585579                                        ./modules/InputUpdateFromVectorx/InputUpdateFromVectorx.cpp\
    586                                         ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.h\
    587                                         ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.cpp\
    588580                                        ./modules/InputArtificialNoisex/InputArtificialNoisex.h\
    589581                                        ./modules/InputArtificialNoisex/InputArtificialNoisex.cpp\
     
    680672                                        ./modules/PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.cpp\
    681673                                        ./modules/PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.h\
    682                                         ./modules/Dakotax/Dakotax.h\
    683                                         ./modules/Dakotax/Dakotax.cpp\
    684                                         ./modules/Dakotax/SpawnCore.cpp\
    685                                         ./modules/Dakotax/SpawnCoreSerial.cpp\
    686                                         ./modules/Dakotax/DescriptorIndex.cpp\
    687674                                        ./modules/InputToResultx/InputToResultx.cpp\
    688675                                        ./modules/InputToResultx/InputToResultx.h\
     
    710697endif
    711698
     699#}}}
     700#DAKOTA sources  {{{1
     701if DAKOTA
     702libISSM_a_SOURCES +=  ./objects/DakotaPlugin.h\
     703                                          ./objects/DakotaPlugin.cpp\
     704                                          ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.h\
     705                                          ./modules/InputUpdateFromDakotax/InputUpdateFromDakotax.cpp\
     706                                          ./modules/DakotaResponsesx/DakotaResponsesx.h\
     707                                          ./modules/DakotaResponsesx/DakotaResponsesx.cpp\
     708                                          ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.h\
     709                                          ./modules/InputUpdateFromVectorDakotax/InputUpdateFromVectorDakotax.cpp\
     710                                          ./modules/AverageOntoPartitionx/AverageOntoPartitionx.cpp\
     711                                          ./modules/AverageOntoPartitionx/AverageOntoPartitionx.h\
     712                                          ./modules/Dakotax/Dakotax.h\
     713                                          ./modules/Dakotax/Dakotax.cpp\
     714                                          ./modules/Dakotax/DakotaMPI_Bcast.cpp\
     715                                          ./modules/Dakotax/DakotaFree.cpp\
     716                                          ./modules/Dakotax/SpawnCore.cpp\
     717                                          ./modules/Dakotax/SpawnCoreParallel.cpp\
     718                                          ./modules/Dakotax/DescriptorIndex.cpp\
     719                                          ./modules/AverageOntoPartitionx/AverageOntoPartitionx.cpp\
     720                                          ./modules/ModelProcessorx/Qmu/CreateParametersQmu.cpp\
     721                                          ./modules/AverageOntoPartitionx/AverageOntoPartitionx.h
     722endif
    712723#}}}
    713724
  • issm/trunk/src/mex/Makefile.am

    r9775 r9788  
    22EXEEXT=$(MEXEXT)
    33
     4#Bin programs {{{1
    45if NOSERIAL
    56bin_PROGRAMS =
     
    2021                                CostFunction \
    2122                                CreateNodalConstraints\
    22                                 DakotaResponses\
    2323                                Echo\
    2424                                ElementConnectivity\
     
    6060                                PropagateFlagsFromConnectivity\
    6161                                ProcessParams\
    62                                 Dakota\
    6362                                Reduceload\
    6463                                Reducevectorgtos\
     
    8079                                TriMeshRefine\
    8180                                InputUpdateFromConstant\
    82                                 InputUpdateFromDakota\
    8381                                InputUpdateFromSolution\
    8482                                InputUpdateFromVector\
     
    8785                                VerticesDof
    8886
    89 endif
    90 
    91 
     87endif
     88#}}}
     89#Dakota programs {{{1
     90if NOSERIAL
     91bin_PROGRAMS +=
     92else
     93bin_PROGRAMS += DakotaResponses\
     94                                Dakota\
     95                                InputUpdateFromDakota
     96endif
     97#}}}
     98#Flags and libraries {{{1
    9299LDADD =   $(TRIANGLELIB) ../c/libISSM.a $(PETSCLIB) $(FLIBS)  $(PLAPACKLIB)  $(MUMPSLIB) $(SCALAPACKLIB)  $(BLACSLIB)  $(HYPRELIB) $(MLLIB) $(DAKOTALIB) $(METISLIB) $(CHACOLIB) $(SCOTCHLIB) $(BLASLAPACKLIB)  $(MPILIB) $(MATHLIB) $(FORTRANLIB) $(GRAPHICSLIB) $(MULTITHREADINGLIB)
    93100
     
    108115endif
    109116
    110 AM_CXXFLAGS += $(CXXOPTFLAGS)
    111 
     117AM_CXXFLAGS += $(CXXOPTFLAGS)
     118
     119#}}}
     120#Bin sources {{{1
    112121AddExternalResult_SOURCES = AddExternalResult/AddExternalResult.cpp\
    113122                                        AddExternalResult/AddExternalResult.h
     
    161170                          NodesDof/NodesDof.h
    162171
     172Echo_SOURCES = Echo/Echo.cpp\
     173                          Echo/Echo.h
     174
     175ElementConnectivity_SOURCES = ElementConnectivity/ElementConnectivity.cpp\
     176                          ElementConnectivity/ElementConnectivity.h
     177
     178EnumToString_SOURCES = EnumToString/EnumToString.cpp\
     179                          EnumToString/EnumToString.h
     180
     181StringToEnum_SOURCES = StringToEnum/StringToEnum.cpp\
     182                          StringToEnum/StringToEnum.h
     183
     184GetSolutionFromInputs_SOURCES = GetSolutionFromInputs/GetSolutionFromInputs.cpp\
     185                          GetSolutionFromInputs/GetSolutionFromInputs.h
     186
     187GetVectorFromInputs_SOURCES = GetVectorFromInputs/GetVectorFromInputs.cpp\
     188                          GetVectorFromInputs/GetVectorFromInputs.h
     189
     190Gradj_SOURCES = Gradj/Gradj.cpp\
     191                          Gradj/Gradj.h
     192
     193Test_SOURCES = Test/Test.cpp\
     194                          Test/Test.h
     195
     196HoleFiller_SOURCES = HoleFiller/HoleFiller.cpp\
     197                          HoleFiller/HoleFiller.h
     198
     199InputDuplicate_SOURCES = InputDuplicate/InputDuplicate.cpp\
     200                          InputDuplicate/InputDuplicate.h
     201
     202InputScale_SOURCES = InputScale/InputScale.cpp\
     203                          InputScale/InputScale.h
     204
     205InputToResult_SOURCES = InputToResult/InputToResult.cpp\
     206                          InputToResult/InputToResult.h
     207
     208InternalFront_SOURCES = InternalFront/InternalFront.cpp\
     209                                                                                 InternalFront/InternalFront.h
     210
     211InterpFromGridToMesh_SOURCES = InterpFromGridToMesh/InterpFromGridToMesh.cpp\
     212                          InterpFromGridToMesh/InterpFromGridToMesh.h
     213
     214InterpFromMeshToMesh2d_SOURCES = InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp\
     215                                                        InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.h
     216
     217InterpFromMeshToMesh3d_SOURCES = InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp\
     218                                                                        InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.h
     219
     220InterpFromMeshToGrid_SOURCES = InterpFromMeshToGrid/InterpFromMeshToGrid.cpp\
     221                                                                        InterpFromMeshToGrid/InterpFromMeshToGrid.h
     222
     223InterpFromMesh2d_SOURCES = InterpFromMesh2d/InterpFromMesh2d.cpp\
     224                                                                        InterpFromMesh2d/InterpFromMesh2d.h
     225
     226KMLFileRead_SOURCES = KMLMeshWrite/KMLFileRead.cpp\
     227                          KMLMeshWrite/KMLFileRead.h
     228
     229KMLMeshWrite_SOURCES = KMLMeshWrite/KMLMeshWrite.cpp\
     230                          KMLMeshWrite/KMLMeshWrite.h
     231
     232KMLOverlay_SOURCES = KMLOverlay/KMLOverlay.cpp\
     233                          KMLOverlay/KMLOverlay.h
     234
     235Xy2ll_SOURCES = Xy2ll/Xy2ll.cpp\
     236                          Xy2ll/Xy2ll.h
     237
     238Ll2xy_SOURCES = Ll2xy/Ll2xy.cpp\
     239                          Ll2xy/Ll2xy.h
     240
     241Exp2Kml_SOURCES = Exp2Kml/Exp2Kml.cpp\
     242                          Exp2Kml/Exp2Kml.h
     243
     244Kml2Exp_SOURCES = Kml2Exp/Kml2Exp.cpp\
     245                          Kml2Exp/Kml2Exp.h
     246
     247AverageFilter_SOURCES = AverageFilter/AverageFilter.cpp\
     248                          AverageFilter/AverageFilter.h
     249
     250Mergesolutionfromftog_SOURCES = Mergesolutionfromftog/Mergesolutionfromftog.cpp\
     251                          Mergesolutionfromftog/Mergesolutionfromftog.h
     252
     253MeshPartition_SOURCES = MeshPartition/MeshPartition.cpp\
     254                          MeshPartition/MeshPartition.h
     255
     256MeshProfileIntersection_SOURCES = MeshProfileIntersection/MeshProfileIntersection.cpp\
     257                          MeshProfileIntersection/MeshProfileIntersection.h
     258
     259ModelProcessor_SOURCES =  ModelProcessor/ModelProcessor.cpp \
     260                                                  ModelProcessor/ModelProcessor.h
     261
     262NodeConnectivity_SOURCES = NodeConnectivity/NodeConnectivity.cpp\
     263                          NodeConnectivity/NodeConnectivity.h
     264
     265Orth_SOURCES = Orth/Orth.cpp\
     266                          Orth/Orth.h
     267
     268OutputResults_SOURCES = OutputResults/OutputResults.cpp\
     269                          OutputResults/OutputResults.h
     270
     271ConstraintsState_SOURCES = ConstraintsState/ConstraintsState.cpp\
     272                          ConstraintsState/ConstraintsState.h
     273
     274PointCloudFindNeighbors_SOURCES = PointCloudFindNeighbors/PointCloudFindNeighbors.cpp\
     275                          PointCloudFindNeighbors/PointCloudFindNeighbors.h
     276
     277ProcessParams_SOURCES = ProcessParams/ProcessParams.cpp\
     278                          ProcessParams/ProcessParams.h
     279
     280PropagateFlagsFromConnectivity_SOURCES = PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.cpp\
     281                          PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.h
     282
     283Reduceload_SOURCES = Reduceload/Reduceload.cpp\
     284                          Reduceload/Reduceload.h
     285
     286Reducevectorgtos_SOURCES = Reducevectorgtos/Reducevectorgtos.cpp\
     287                          Reducevectorgtos/Reducevectorgtos.h
     288
     289Reducevectorgtof_SOURCES = Reducevectorgtof/Reducevectorgtof.cpp\
     290                                                                        Reducevectorgtof/Reducevectorgtof.h
     291
     292Response_SOURCES = Response/Response.cpp\
     293                                                                        Response/Response.h
     294
     295Scotch_SOURCES = Scotch/Scotch.cpp\
     296                          Scotch/Scotch.h
     297
     298Solver_SOURCES = Solver/Solver.cpp\
     299                          Solver/Solver.h
     300
     301SparseToVector_SOURCES = SparseToVector/SparseToVector.cpp\
     302                          SparseToVector/SparseToVector.h
     303
     304SpcNodes_SOURCES = SpcNodes/SpcNodes.cpp\
     305                          SpcNodes/SpcNodes.h
     306
     307UpdateConstraints_SOURCES = UpdateConstraints/UpdateConstraints.cpp\
     308                          UpdateConstraints/UpdateConstraints.h
     309
     310SystemMatrices_SOURCES = SystemMatrices/SystemMatrices.cpp\
     311                          SystemMatrices/SystemMatrices.h
     312
     313SurfaceArea_SOURCES = SurfaceArea/SurfaceArea.cpp\
     314                                                                 SurfaceArea/SurfaceArea.h
     315
     316TimeAdapt_SOURCES = TimeAdapt/TimeAdapt.cpp\
     317                          TimeAdapt/TimeAdapt.h
     318
     319TriaSearch_SOURCES = TriaSearch/TriaSearch.cpp\
     320                          TriaSearch/TriaSearch.h
     321
     322TriMesh_SOURCES = TriMesh/TriMesh.cpp\
     323                          TriMesh/TriMesh.h
     324
     325TriMeshNoDensity_SOURCES = TriMeshNoDensity/TriMeshNoDensity.cpp\
     326                          TriMeshNoDensity/TriMeshNoDensity.h
     327
     328TriMeshProcessRifts_SOURCES = TriMeshProcessRifts/TriMeshProcessRifts.cpp\
     329                          TriMeshProcessRifts/TriMeshProcessRifts.h
     330
     331TriMeshRefine_SOURCES = TriMeshRefine/TriMeshRefine.cpp\
     332                          TriMeshRefine/TriMeshRefine.h
     333
     334InputUpdateFromConstant_SOURCES = InputUpdateFromConstant/InputUpdateFromConstant.cpp\
     335                          InputUpdateFromConstant/InputUpdateFromConstant.h
     336
     337InputUpdateFromSolution_SOURCES = InputUpdateFromSolution/InputUpdateFromSolution.cpp\
     338                          InputUpdateFromSolution/InputUpdateFromSolution.h
     339
     340InputUpdateFromVector_SOURCES = InputUpdateFromVector/InputUpdateFromVector.cpp\
     341                          InputUpdateFromVector/InputUpdateFromVector.h
     342
     343UpdateVertexPositions_SOURCES = UpdateVertexPositions/UpdateVertexPositions.cpp\
     344                          UpdateVertexPositions/UpdateVertexPositions.h
     345
     346UpdateDynamicConstraints_SOURCES = UpdateDynamicConstraints/UpdateDynamicConstraints.cpp\
     347                          UpdateDynamicConstraints/UpdateDynamicConstraints.h
     348
     349ParsePetscOptions_SOURCES = ParsePetscOptions/ParsePetscOptions.cpp\
     350                          ParsePetscOptions/ParsePetscOptions.h
     351
     352VerticesDof_SOURCES = VerticesDof/VerticesDof.cpp\
     353                          VerticesDof/VerticesDof.h
     354
     355#}}}
     356#Dakota sources {{{1
    163357DakotaResponses_SOURCES = DakotaResponses/DakotaResponses.cpp\
    164358                          DakotaResponses/DakotaResponses.h
    165 
    166 Echo_SOURCES = Echo/Echo.cpp\
    167                           Echo/Echo.h
    168 
    169 ElementConnectivity_SOURCES = ElementConnectivity/ElementConnectivity.cpp\
    170                           ElementConnectivity/ElementConnectivity.h
    171 
    172 EnumToString_SOURCES = EnumToString/EnumToString.cpp\
    173                           EnumToString/EnumToString.h
    174 
    175 StringToEnum_SOURCES = StringToEnum/StringToEnum.cpp\
    176                           StringToEnum/StringToEnum.h
    177 
    178 GetSolutionFromInputs_SOURCES = GetSolutionFromInputs/GetSolutionFromInputs.cpp\
    179                           GetSolutionFromInputs/GetSolutionFromInputs.h
    180 
    181 GetVectorFromInputs_SOURCES = GetVectorFromInputs/GetVectorFromInputs.cpp\
    182                           GetVectorFromInputs/GetVectorFromInputs.h
    183 
    184 Gradj_SOURCES = Gradj/Gradj.cpp\
    185                           Gradj/Gradj.h
    186 
    187 Test_SOURCES = Test/Test.cpp\
    188                           Test/Test.h
    189 
    190 HoleFiller_SOURCES = HoleFiller/HoleFiller.cpp\
    191                           HoleFiller/HoleFiller.h
    192 
    193 InputDuplicate_SOURCES = InputDuplicate/InputDuplicate.cpp\
    194                           InputDuplicate/InputDuplicate.h
    195 
    196 InputScale_SOURCES = InputScale/InputScale.cpp\
    197                           InputScale/InputScale.h
    198 
    199 InputToResult_SOURCES = InputToResult/InputToResult.cpp\
    200                           InputToResult/InputToResult.h
    201 
    202 InternalFront_SOURCES = InternalFront/InternalFront.cpp\
    203                                                                                  InternalFront/InternalFront.h
    204 
    205 InterpFromGridToMesh_SOURCES = InterpFromGridToMesh/InterpFromGridToMesh.cpp\
    206                           InterpFromGridToMesh/InterpFromGridToMesh.h
    207 
    208 InterpFromMeshToMesh2d_SOURCES = InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp\
    209                                                         InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.h
    210 
    211 InterpFromMeshToMesh3d_SOURCES = InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.cpp\
    212                                                                         InterpFromMeshToMesh3d/InterpFromMeshToMesh3d.h
    213 
    214 InterpFromMeshToGrid_SOURCES = InterpFromMeshToGrid/InterpFromMeshToGrid.cpp\
    215                                                                         InterpFromMeshToGrid/InterpFromMeshToGrid.h
    216 
    217 InterpFromMesh2d_SOURCES = InterpFromMesh2d/InterpFromMesh2d.cpp\
    218                                                                         InterpFromMesh2d/InterpFromMesh2d.h
    219 
    220 KMLFileRead_SOURCES = KMLMeshWrite/KMLFileRead.cpp\
    221                           KMLMeshWrite/KMLFileRead.h
    222 
    223 KMLMeshWrite_SOURCES = KMLMeshWrite/KMLMeshWrite.cpp\
    224                           KMLMeshWrite/KMLMeshWrite.h
    225 
    226 KMLOverlay_SOURCES = KMLOverlay/KMLOverlay.cpp\
    227                           KMLOverlay/KMLOverlay.h
    228 
    229 Xy2ll_SOURCES = Xy2ll/Xy2ll.cpp\
    230                           Xy2ll/Xy2ll.h
    231 
    232 Ll2xy_SOURCES = Ll2xy/Ll2xy.cpp\
    233                           Ll2xy/Ll2xy.h
    234 
    235 Exp2Kml_SOURCES = Exp2Kml/Exp2Kml.cpp\
    236                           Exp2Kml/Exp2Kml.h
    237 
    238 Kml2Exp_SOURCES = Kml2Exp/Kml2Exp.cpp\
    239                           Kml2Exp/Kml2Exp.h
    240 
    241 AverageFilter_SOURCES = AverageFilter/AverageFilter.cpp\
    242                           AverageFilter/AverageFilter.h
    243 
    244 Mergesolutionfromftog_SOURCES = Mergesolutionfromftog/Mergesolutionfromftog.cpp\
    245                           Mergesolutionfromftog/Mergesolutionfromftog.h
    246 
    247 MeshPartition_SOURCES = MeshPartition/MeshPartition.cpp\
    248                           MeshPartition/MeshPartition.h
    249 
    250 MeshProfileIntersection_SOURCES = MeshProfileIntersection/MeshProfileIntersection.cpp\
    251                           MeshProfileIntersection/MeshProfileIntersection.h
    252 
    253 ModelProcessor_SOURCES =  ModelProcessor/ModelProcessor.cpp \
    254                                                   ModelProcessor/ModelProcessor.h
    255 
    256 NodeConnectivity_SOURCES = NodeConnectivity/NodeConnectivity.cpp\
    257                           NodeConnectivity/NodeConnectivity.h
    258 
    259 Orth_SOURCES = Orth/Orth.cpp\
    260                           Orth/Orth.h
    261 
    262 OutputResults_SOURCES = OutputResults/OutputResults.cpp\
    263                           OutputResults/OutputResults.h
    264 
    265 ConstraintsState_SOURCES = ConstraintsState/ConstraintsState.cpp\
    266                           ConstraintsState/ConstraintsState.h
    267 
    268 PointCloudFindNeighbors_SOURCES = PointCloudFindNeighbors/PointCloudFindNeighbors.cpp\
    269                           PointCloudFindNeighbors/PointCloudFindNeighbors.h
    270 
    271 ProcessParams_SOURCES = ProcessParams/ProcessParams.cpp\
    272                           ProcessParams/ProcessParams.h
    273 
    274 PropagateFlagsFromConnectivity_SOURCES = PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.cpp\
    275                           PropagateFlagsFromConnectivity/PropagateFlagsFromConnectivity.h
    276 
    277359Dakota_SOURCES = Dakota/Dakota.cpp\
    278360                          Dakota/Dakota.h
    279 
    280 Reduceload_SOURCES = Reduceload/Reduceload.cpp\
    281                           Reduceload/Reduceload.h
    282 
    283 Reducevectorgtos_SOURCES = Reducevectorgtos/Reducevectorgtos.cpp\
    284                           Reducevectorgtos/Reducevectorgtos.h
    285 
    286 Reducevectorgtof_SOURCES = Reducevectorgtof/Reducevectorgtof.cpp\
    287                                                                         Reducevectorgtof/Reducevectorgtof.h
    288 
    289 Response_SOURCES = Response/Response.cpp\
    290                                                                         Response/Response.h
    291 
    292 Scotch_SOURCES = Scotch/Scotch.cpp\
    293                           Scotch/Scotch.h
    294 
    295 Solver_SOURCES = Solver/Solver.cpp\
    296                           Solver/Solver.h
    297 
    298 SparseToVector_SOURCES = SparseToVector/SparseToVector.cpp\
    299                           SparseToVector/SparseToVector.h
    300 
    301 SpcNodes_SOURCES = SpcNodes/SpcNodes.cpp\
    302                           SpcNodes/SpcNodes.h
    303 
    304 UpdateConstraints_SOURCES = UpdateConstraints/UpdateConstraints.cpp\
    305                           UpdateConstraints/UpdateConstraints.h
    306 
    307 SystemMatrices_SOURCES = SystemMatrices/SystemMatrices.cpp\
    308                           SystemMatrices/SystemMatrices.h
    309 
    310 SurfaceArea_SOURCES = SurfaceArea/SurfaceArea.cpp\
    311                                                                  SurfaceArea/SurfaceArea.h
    312 
    313 TimeAdapt_SOURCES = TimeAdapt/TimeAdapt.cpp\
    314                           TimeAdapt/TimeAdapt.h
    315 
    316 TriaSearch_SOURCES = TriaSearch/TriaSearch.cpp\
    317                           TriaSearch/TriaSearch.h
    318 
    319 TriMesh_SOURCES = TriMesh/TriMesh.cpp\
    320                           TriMesh/TriMesh.h
    321 
    322 TriMeshNoDensity_SOURCES = TriMeshNoDensity/TriMeshNoDensity.cpp\
    323                           TriMeshNoDensity/TriMeshNoDensity.h
    324 
    325 TriMeshProcessRifts_SOURCES = TriMeshProcessRifts/TriMeshProcessRifts.cpp\
    326                           TriMeshProcessRifts/TriMeshProcessRifts.h
    327 
    328 TriMeshRefine_SOURCES = TriMeshRefine/TriMeshRefine.cpp\
    329                           TriMeshRefine/TriMeshRefine.h
    330 
    331 InputUpdateFromConstant_SOURCES = InputUpdateFromConstant/InputUpdateFromConstant.cpp\
    332                           InputUpdateFromConstant/InputUpdateFromConstant.h
    333 
    334361InputUpdateFromDakota_SOURCES = InputUpdateFromDakota/InputUpdateFromDakota.cpp\
    335362                          InputUpdateFromDakota/InputUpdateFromDakota.h
    336 
    337 InputUpdateFromSolution_SOURCES = InputUpdateFromSolution/InputUpdateFromSolution.cpp\
    338                           InputUpdateFromSolution/InputUpdateFromSolution.h
    339 
    340 InputUpdateFromVector_SOURCES = InputUpdateFromVector/InputUpdateFromVector.cpp\
    341                           InputUpdateFromVector/InputUpdateFromVector.h
    342 
    343 UpdateVertexPositions_SOURCES = UpdateVertexPositions/UpdateVertexPositions.cpp\
    344                           UpdateVertexPositions/UpdateVertexPositions.h
    345 
    346 UpdateDynamicConstraints_SOURCES = UpdateDynamicConstraints/UpdateDynamicConstraints.cpp\
    347                           UpdateDynamicConstraints/UpdateDynamicConstraints.h
    348 
    349 ParsePetscOptions_SOURCES = ParsePetscOptions/ParsePetscOptions.cpp\
    350                           ParsePetscOptions/ParsePetscOptions.h
    351 
    352 VerticesDof_SOURCES = VerticesDof/VerticesDof.cpp\
    353                           VerticesDof/VerticesDof.h
     363#}}}
Note: See TracChangeset for help on using the changeset viewer.