Skip to content
Snippets Groups Projects
Commit 54b3757a authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

move mpi library code into library

parent 5d5920d9
No related branches found
No related tags found
No related merge requests found
set(HEADERS
)
set(MINIAPP_SOURCES
mpi.cpp
# mpi.cpp
io.cpp
miniapp.cpp
)
......
......@@ -7,6 +7,9 @@ set(BASE_SOURCES
parameter_list.cpp
swcio.cpp
)
if(${WITH_MPI})
set(BASE_SOURCES ${BASE_SOURCES} communication/mpi.cpp)
endif()
add_library(cellalgo ${BASE_SOURCES} ${HEADERS})
add_dependencies(cellalgo build_all_mods)
......
File moved
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment