Skip to content
Snippets Groups Projects
Commit 2ac37506 authored by Kutscher's avatar Kutscher
Browse files

add module folders for non-Newtonian fluids multiphase flow modules

parent a78222d0
No related branches found
No related tags found
1 merge request!225Refactoring of CPU code
...@@ -29,7 +29,9 @@ SET(USE_CATALYST OFF CACHE BOOL "include Paraview Catalyst support") ...@@ -29,7 +29,9 @@ SET(USE_CATALYST OFF CACHE BOOL "include Paraview Catalyst support")
SET(USE_HLRN_LUSTRE OFF CACHE BOOL "include HLRN Lustre support") SET(USE_HLRN_LUSTRE OFF CACHE BOOL "include HLRN Lustre support")
SET(USE_DEM_COUPLING OFF CACHE BOOL "PE plugin") SET(USE_DEM_COUPLING OFF CACHE BOOL "PE plugin")
SET(USE_LIGGGHTS OFF CACHE BOOL "include LIGGGHTS library support") SET(ENABLE_MODULE_LiggghtsCoupling OFF CACHE BOOL "enable coupling with LIGGGHTS library")
SET(ENABLE_MODULE_NonNewtonianFluids OFF CACHE BOOL "enable non-Newtonian fluids module")
SET(ENABLE_MODULE_MultiphaseFlow OFF CACHE BOOL "enable multiphase flow module")
#MPI #MPI
IF((NOT ${CMAKE_CXX_COMPILER} MATCHES mpicxx) AND (NOT ${CMAKE_CXX_COMPILER} MATCHES mpiicpc))# OR NOT ${CMAKE_CXX_COMPILER} MATCHES cc OR NOT ${CMAKE_CXX_COMPILER} MATCHES mpiCC) IF((NOT ${CMAKE_CXX_COMPILER} MATCHES mpicxx) AND (NOT ${CMAKE_CXX_COMPILER} MATCHES mpiicpc))# OR NOT ${CMAKE_CXX_COMPILER} MATCHES cc OR NOT ${CMAKE_CXX_COMPILER} MATCHES mpiCC)
...@@ -85,9 +87,17 @@ if(BUILD_VF_PYTHON_BINDINGS) ...@@ -85,9 +87,17 @@ if(BUILD_VF_PYTHON_BINDINGS)
add_subdirectory(src/cpu/simulationconfig) add_subdirectory(src/cpu/simulationconfig)
endif() endif()
if(USE_LIGGGHTS) if(ENABLE_MODULE_LiggghtsCoupling)
add_subdirectory(src/cpu/LiggghtsCoupling) add_subdirectory(src/cpu/LiggghtsCoupling)
endif() endif()
if(ENABLE_MODULE_NonNewtonianFluids)
add_subdirectory(src/cpu/NonNewtonianFluids)
endif()
if(ENABLE_MODULE_MultiphaseFlow)
add_subdirectory(src/cpu/MultiphaseFlow)
endif()
set (APPS_ROOT_CPU "${VF_ROOT_DIR}/apps/cpu/") set (APPS_ROOT_CPU "${VF_ROOT_DIR}/apps/cpu/")
include(${APPS_ROOT_CPU}/Applications.cmake) include(${APPS_ROOT_CPU}/Applications.cmake)
\ No newline at end of file
vf_add_library(PUBLIC_LINK VirtualFluidsCore)
\ No newline at end of file
vf_add_library(PUBLIC_LINK VirtualFluidsCore)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment