https://gitlab.opengeosys.org/ogs/ogs.git
Revision 428becfe43771ea4f605d8ec4eb90d216b953a3f authored by Lars Bilke on 17 March 2023, 15:08:55 UTC, committed by Lars Bilke on 17 March 2023, 15:08:55 UTC
1 parent 237b84f
Raw File
Tip revision: 428becfe43771ea4f605d8ec4eb90d216b953a3f authored by Lars Bilke on 17 March 2023, 15:08:55 UTC
[cmake] Honor CMAKE_BUILD_PARALLEL_LEVEL when building PETSc or LIS.
Tip revision: 428becf
CMakeLists.txt
add_subdirectory(ApplicationsLib)
add_subdirectory(DataHolderLib)
add_subdirectory(FileIO)

if(OGS_BUILD_UTILS AND NOT _IS_SUBPROJECT)
    add_subdirectory(Utils)
elseif(OGS_BUILD_GUI)
    add_subdirectory(Utils/OGSFileConverter)
endif() # OGS_BUILD_UTILS AND NOT _IS_SUBPROJECT

if(OGS_BUILD_GUI)
    add_subdirectory(DataExplorer)
endif() # OGS_BUILD_GUI

if(OGS_BUILD_CLI)
    add_subdirectory(CLI)
endif() # OGS_BUILD_CLI

if(OGS_USE_INSITU)
    add_subdirectory(InSituLib)
endif()

add_subdirectory(Python)
back to top