Minor changes to help cmake parser
This commit is contained in:
parent
1be2b28a4b
commit
4626c03206
4 changed files with 26 additions and 24 deletions
|
@ -31,7 +31,7 @@ Description
|
||||||
#include "mathematicalConstants.H"
|
#include "mathematicalConstants.H"
|
||||||
#include "EulerCoordinateRotation.H"
|
#include "EulerCoordinateRotation.H"
|
||||||
#include "coordinateSystem.H"
|
#include "coordinateSystem.H"
|
||||||
#include "curvedEdges/rotEllipse2D.H"
|
#include "rotEllipse2D.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
|
@ -23,13 +23,6 @@ $(boundaryConditions)/timeVaryingFixedDisplacementZeroShear/timeVaryingFixedDisp
|
||||||
$(boundaryConditions)/timeVaryingFixedRotation/timeVaryingFixedRotationFvPatchVectorField.C
|
$(boundaryConditions)/timeVaryingFixedRotation/timeVaryingFixedRotationFvPatchVectorField.C
|
||||||
$(boundaryConditions)/transitionalParabolicVelocity/transitionalParabolicVelocityFvPatchVectorField.C
|
$(boundaryConditions)/transitionalParabolicVelocity/transitionalParabolicVelocityFvPatchVectorField.C
|
||||||
|
|
||||||
cohesiveLaws = $(constitutiveModel)/cohesiveLaws
|
|
||||||
$(cohesiveLaws)/cohesiveLaw/cohesiveLaw.C
|
|
||||||
$(cohesiveLaws)/cohesiveLaw/newCohesiveLaw.C
|
|
||||||
$(cohesiveLaws)/multiMaterialCohesiveLaw/multiMaterialCohesiveLaw.C
|
|
||||||
$(cohesiveLaws)/dugdaleCohesiveLaw/dugdaleCohesiveLaw.C
|
|
||||||
$(cohesiveLaws)/linearCohesiveLaw/linearCohesiveLaw.C
|
|
||||||
|
|
||||||
contactModels = contactModels
|
contactModels = contactModels
|
||||||
$(contactModels)/normalContactModels/normalContactModel/normalContactModel.C
|
$(contactModels)/normalContactModels/normalContactModel/normalContactModel.C
|
||||||
$(contactModels)/normalContactModels/normalContactModel/newNormalContactModel.C
|
$(contactModels)/normalContactModels/normalContactModel/newNormalContactModel.C
|
||||||
|
@ -49,7 +42,7 @@ $(contactModels)/frictionContactModels/frictionLaws/coulombFriction/coulombFrict
|
||||||
constitutiveModel = constitutiveModel
|
constitutiveModel = constitutiveModel
|
||||||
$(constitutiveModel)/constitutiveModel.C
|
$(constitutiveModel)/constitutiveModel.C
|
||||||
$(constitutiveModel)/plasticityStressReturnMethods/plasticityStressReturn/plasticityStressReturn.C
|
$(constitutiveModel)/plasticityStressReturnMethods/plasticityStressReturn/plasticityStressReturn.C
|
||||||
$(constitutiveModel)/plasticityStressReturnMethods/plasticityStressReturn/newPlasticityStressReturn.Cr
|
$(constitutiveModel)/plasticityStressReturnMethods/plasticityStressReturn/newPlasticityStressReturn.C
|
||||||
$(constitutiveModel)/plasticityStressReturnMethods/aravasMises/aravasMises.C
|
$(constitutiveModel)/plasticityStressReturnMethods/aravasMises/aravasMises.C
|
||||||
$(constitutiveModel)/plasticityStressReturnMethods/yamadaMises/yamadaMises.C
|
$(constitutiveModel)/plasticityStressReturnMethods/yamadaMises/yamadaMises.C
|
||||||
$(constitutiveModel)/solidInterfaces/solidInterface/solidInterface.C
|
$(constitutiveModel)/solidInterfaces/solidInterface/solidInterface.C
|
||||||
|
@ -63,6 +56,14 @@ $(constitutiveModel)/solidInterfaces/largeStrainULCorrected/largeStrainULCorrect
|
||||||
$(constitutiveModel)/solidInterfaces/none/noneSolidInterface.C
|
$(constitutiveModel)/solidInterfaces/none/noneSolidInterface.C
|
||||||
$(constitutiveModel)/tractionBoundaryGradient/tractionBoundaryGradient.C
|
$(constitutiveModel)/tractionBoundaryGradient/tractionBoundaryGradient.C
|
||||||
|
|
||||||
|
cohesiveLaws = $(constitutiveModel)/cohesiveLaws
|
||||||
|
$(cohesiveLaws)/cohesiveLaw/cohesiveLaw.C
|
||||||
|
$(cohesiveLaws)/cohesiveLaw/newCohesiveLaw.C
|
||||||
|
$(cohesiveLaws)/multiMaterialCohesiveLaw/multiMaterialCohesiveLaw.C
|
||||||
|
$(cohesiveLaws)/dugdaleCohesiveLaw/dugdaleCohesiveLaw.C
|
||||||
|
$(cohesiveLaws)/linearCohesiveLaw/linearCohesiveLaw.C
|
||||||
|
|
||||||
|
|
||||||
finiteVolume = finiteVolume
|
finiteVolume = finiteVolume
|
||||||
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceGrads.C
|
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceGrads.C
|
||||||
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceVectors.C
|
$(finiteVolume)/gradSchemes/leastSquaresSolidInterfaceGrad/leastSquaresSolidInterfaceVectors.C
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
chemistryReaders/chemkinReader/chemkinReader.C
|
chemistryReaders/chemkinReader/chemkinReader.C
|
||||||
chemistryReaders/chemkinReader/chemkinLexer.C
|
chemistryReaders/chemkinReader/chemkinLexer.L
|
||||||
chemistryReaders/chemistryReader/makeChemistryReaders.C
|
chemistryReaders/chemistryReader/makeChemistryReaders.C
|
||||||
|
|
||||||
mixtures/basicMultiComponentMixture/basicMultiComponentMixture.C
|
mixtures/basicMultiComponentMixture/basicMultiComponentMixture.C
|
||||||
|
|
|
@ -14,19 +14,20 @@ $(NSRDSfunctions)/NSRDSfunc7/NSRDSfunc7.C
|
||||||
$(NSRDSfunctions)/NSRDSfunc14/NSRDSfunc14.C
|
$(NSRDSfunctions)/NSRDSfunc14/NSRDSfunc14.C
|
||||||
$(APIfunctions)/APIdiffCoefFunc/APIdiffCoefFunc.C
|
$(APIfunctions)/APIdiffCoefFunc/APIdiffCoefFunc.C
|
||||||
|
|
||||||
freesteam-2.1/common.c
|
freesteam = freesteam-2.1
|
||||||
freesteam-2.1/steam.c
|
$(freesteam)/common.c
|
||||||
freesteam-2.1/b23.c
|
$(freesteam)/steam.c
|
||||||
freesteam-2.1/backwards.c
|
$(freesteam)/b23.c
|
||||||
freesteam-2.1/viscosity.c
|
$(freesteam)/backwards.c
|
||||||
freesteam-2.1/thcond.c
|
$(freesteam)/viscosity.c
|
||||||
freesteam-2.1/region1.c
|
$(freesteam)/thcond.c
|
||||||
freesteam-2.1/region2.c
|
$(freesteam)/region1.c
|
||||||
freesteam-2.1/region3.c
|
$(freesteam)/region2.c
|
||||||
freesteam-2.1/region4.c
|
$(freesteam)/region3.c
|
||||||
freesteam-2.1/steam_pv.c
|
$(freesteam)/region4.c
|
||||||
freesteam-2.1/steam_ph.c
|
$(freesteam)/steam_pv.c
|
||||||
freesteam-2.1/steam_pT.c
|
$(freesteam)/steam_ph.c
|
||||||
freesteam-2.1/zeroin.c
|
$(freesteam)/steam_pT.c
|
||||||
|
$(freesteam)/zeroin.c
|
||||||
|
|
||||||
LIB = $(FOAM_LIBBIN)/libthermophysicalFunctions
|
LIB = $(FOAM_LIBBIN)/libthermophysicalFunctions
|
||||||
|
|
Reference in a new issue