Skip to content

Commit

Permalink
remove a bunch of redundant direct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsettgast committed Aug 14, 2024
1 parent 793fb84 commit e915172
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/coreComponents/constitutive/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ set( constitutive_sources
thermalConductivity/SinglePhaseThermalConductivityBase.cpp
)

set( dependencyList ${parallelDeps} dataRepository functions denseLinearAlgebra )
set( dependencyList ${parallelDeps} functions denseLinearAlgebra )

if( ENABLE_PVTPackage )
set( constitutive_headers
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/events/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set( events_sources
tasks/TasksManager.cpp
)

set( dependencyList ${parallelDeps} common fileIO dataRepository )
set( dependencyList ${parallelDeps} fileIO )

blt_add_library( NAME events
SOURCES ${events_sources}
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/fieldSpecification/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set( fieldSpecification_sources
PerfectlyMatchedLayer.cpp
)

set( dependencyList ${parallelDeps} functions linearAlgebra )
set( dependencyList ${parallelDeps} linearAlgebra )

blt_add_library( NAME fieldSpecification
SOURCES ${fieldSpecification_sources}
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/fileIO/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set( fileIO_sources
timeHistory/PackCollection.cpp
timeHistory/HDFHistoryIO.cpp )

set( dependencyList ${parallelDeps} mesh constitutive HDF5::HDF5 )
set( dependencyList ${parallelDeps} mesh HDF5::HDF5 )
if( ENABLE_PYGEOSX )
list( APPEND fileIO_headers
python/PyHistoryCollectionType.hpp
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/finiteVolume/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ set( finiteVolume_sources
HybridMimeticDiscretization.cpp
)

set( dependencyList ${parallelDeps} mesh codingUtilities fieldSpecification )
set( dependencyList ${parallelDeps} mesh fieldSpecification )

blt_add_library( NAME finiteVolume
SOURCES ${finiteVolume_sources}
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/functions/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if( ENABLE_MATHPRESSO )
endif()


set( dependencyList ${parallelDeps} codingUtilities dataRepository )
set( dependencyList ${parallelDeps} dataRepository )

if( ENABLE_MATHPRESSO )
list( APPEND dependencyList mathpresso )
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/mainInterface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set( mainInterface_sources
version.cpp
)

set( dependencyList ${parallelDeps} physicsSolvers discretizationMethods fieldSpecification linearAlgebra dataRepository events fileIO optionparser )
set( dependencyList ${parallelDeps} physicsSolvers optionparser )

blt_add_library( NAME mainInterface
SOURCES ${mainInterface_sources}
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/mesh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ set( mesh_sources
simpleGeometricObjects/ThickPlane.cpp
utilities/ComputationalGeometry.cpp )

set( dependencyList ${parallelDeps} schema dataRepository constitutive finiteElement parmetis metis )
set( dependencyList ${parallelDeps} schema constitutive finiteElement parmetis metis )

if( ENABLE_VTK )
message(STATUS "Adding VTK readers")
Expand Down
2 changes: 1 addition & 1 deletion src/coreComponents/physicsSolvers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if( GEOS_ENABLE_WAVEPROPAGATION )
add_subdirectory( wavePropagation )
endif()

set( dependencyList ${parallelDeps} constitutive mesh linearAlgebra discretizationMethods events )
set( dependencyList ${parallelDeps} discretizationMethods events )
if( ENABLE_PYGEOSX )
list( APPEND physicsSolvers_headers
python/PySolver.hpp
Expand Down

0 comments on commit e915172

Please sign in to comment.