Skip to content

Commit

Permalink
fix: Included the directives in CMakeList to compile the TPZHybridMix…
Browse files Browse the repository at this point in the history
…edElasticityUP material
  • Loading branch information
giavancini committed Sep 25, 2023
1 parent 5ddf9f9 commit e0ecef7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Material/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ set(public_headers
TPZLagrangeMultiplier.h
TPZLagrangeMultiplierCS.h
TPZMatTypes.h
TPZMatInterfaceHybridElasticityStokes.h
)

set(headers
Expand Down Expand Up @@ -66,6 +67,7 @@ set(headers
TPZNullMaterialCS.h
TPZLagrangeMultiplier.h
TPZLagrangeMultiplierCS.h
TPZMatInterfaceHybridElasticityStokes.h
)
set(sources
TPZMaterial.cpp
Expand All @@ -92,6 +94,7 @@ set(sources
TPZNullMaterialCS.cpp
TPZLagrangeMultiplier.cpp
TPZLagrangeMultiplierCS.cpp
TPZMatInterfaceHybridElasticityStokes.cpp
)

install(FILES ${public_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/Material)
Expand Down
3 changes: 3 additions & 0 deletions Material/Elasticity/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ set(public_headers
TPZElasticity3D.h
TPZElasticity2D.h
TPZMixedElasticityND.h
TPZHybridMixedElasticityUP.h
)

set(headers
TPZElasticity3D.h
TPZElasticity2D.h
TPZMixedElasticityND.h
TPZHybridMixedElasticityUP.h
)
set(sources
TPZElasticity3D.cpp
TPZElasticity2D.cpp
TPZMixedElasticityND.cpp
TPZHybridMixedElasticityUP.cpp
)

install(FILES ${public_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/Material/Elasticity)
Expand Down
2 changes: 1 addition & 1 deletion Material/TPZMatInterfaceHybridElasticityStokes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
static TPZLogger logger("pz.InterfaceHybridElasticityStokes");
#endif

TPZMatInterfaceHybridElasticityStokes::TPZMatInterfaceHybridElasticityStokes(int matID, int dimension, bool isAxisymmetric) : TBase(matID), fdimension(dimension), faxisymmetry(isAxisymmetric) {}
TPZMatInterfaceHybridElasticityStokes::TPZMatInterfaceHybridElasticityStokes(int matID, int dimension, bool isAxisymmetric) : TBase(matID), fdimension(dimension), faxisymmetric(isAxisymmetric) {}

TPZMatInterfaceHybridElasticityStokes::~TPZMatInterfaceHybridElasticityStokes() {}

Expand Down

0 comments on commit e0ecef7

Please sign in to comment.