Skip to content

Commit

Permalink
fix case sensitive issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsettgast committed Aug 16, 2024
1 parent 6abbacd commit fcd7008
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions host-configs/apple/macOS_base.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ set( LAPACK_LIBRARIES ${HOMEBREW_DIR}/opt/lapack/lib/liblapack.dylib CACHE PATH
set(ENABLE_DOXYGEN OFF CACHE BOOL "" FORCE)
set(ENABLE_MATHPRESSO OFF CACHE BOOL "" FORCE )

set(GEOS_BUILD_SHARED_LIBS ON CACHE BOOL "" FORCE)
set(GEOS_BUILD_SHARED_CORE_LIB OFF CACHE BOOL "" FORCE)
set(GEOS_BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE)
set(GEOS_BUILD_SHARED_CORE_LIB ON CACHE BOOL "" FORCE)



Expand Down
24 changes: 12 additions & 12 deletions src/coreComponents/constitutiveDrivers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Specify all headers
#
set( constitutiveDrivers_headers
fluid/multifluid/PVTDriver.hpp
fluid/multifluid/PVTDriverRunTest.hpp
fluid/multifluid/reactive/ReactiveFluidDriver.hpp
fluid/multiFluid/PVTDriver.hpp
fluid/multiFluid/PVTDriverRunTest.hpp
fluid/multiFluid/reactive/ReactiveFluidDriver.hpp
relativePermeability/RelpermDriver.hpp
relativePermeability/RelpermDriverRunTest.hpp
solid/TriaxialDriver.hpp
Expand All @@ -13,15 +13,15 @@ set( constitutiveDrivers_headers
# Specify all sources
#
set( constitutiveDrivers_sources
fluid/multifluid/PVTDriver.cpp
fluid/multifluid/blackOil/PVTDriverRunTestDeadOilFluid.cpp
fluid/multifluid/CO2Brine/PVTDriverRunTestCO2BrinePhillipsFluid.cpp
fluid/multifluid/CO2Brine/PVTDriverRunTestCO2BrinePhillipsThermalFluid.cpp
fluid/multifluid/CO2Brine/PVTDriverRunTestCO2BrineEzrokhiFluid.cpp
fluid/multifluid/CO2Brine/PVTDriverRunTestCO2BrineEzrokhiThermalFluid.cpp
fluid/multifluid/compositional/PVTDriverRunTestCompositionalTwoPhaseConstantViscosity.cpp
fluid/multifluid/compositional/PVTDriverRunTestCompositionalTwoPhaseLohrenzBrayClarkViscosity.cpp
fluid/multifluid/reactive/ReactiveFluidDriver.cpp
fluid/multiFluid/PVTDriver.cpp
fluid/multiFluid/blackOil/PVTDriverRunTestDeadOilFluid.cpp
fluid/multiFluid/CO2Brine/PVTDriverRunTestCO2BrinePhillipsFluid.cpp
fluid/multiFluid/CO2Brine/PVTDriverRunTestCO2BrinePhillipsThermalFluid.cpp
fluid/multiFluid/CO2Brine/PVTDriverRunTestCO2BrineEzrokhiFluid.cpp
fluid/multiFluid/CO2Brine/PVTDriverRunTestCO2BrineEzrokhiThermalFluid.cpp
fluid/multiFluid/compositional/PVTDriverRunTestCompositionalTwoPhaseConstantViscosity.cpp
fluid/multiFluid/compositional/PVTDriverRunTestCompositionalTwoPhaseLohrenzBrayClarkViscosity.cpp
fluid/multiFluid/reactive/ReactiveFluidDriver.cpp
relativePermeability/RelpermDriver.cpp
relativePermeability/RelpermDriverBrooksCoreyBakerRunTest.cpp
relativePermeability/RelpermDriverBrooksCoreyStone2RunTest.cpp
Expand Down

0 comments on commit fcd7008

Please sign in to comment.