Skip to content

Commit

Permalink
Up cmake min version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Assogba committed Apr 6, 2023
1 parent 298ea5e commit e9abb4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required( VERSION 3.0 )
cmake_minimum_required( VERSION 3.4 )
project(human.mpi)

set(CMAKE_CXX_STANDARD 11)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ world.display(); // display time table

## Build an example
```bash
mkdir build; cd build
mkdir build && cd build
cmake ..
make -j
mpiexec -n 2 ./usage
Expand All @@ -42,14 +42,14 @@ mpiexec -n 2 ./usage

## Roadmap
- Add mpi request in human::mpi
- Write tests
- Add multiple executable in Cmake
- Write tests using ctest or catch2
- Add async experiments
- Add multiple executable target in Cmake
- Configure Github action
- Simple Doc

## Write
- Developping an interface around MPI
- What I learn while writing


Inspired by Boost.MPI

0 comments on commit e9abb4a

Please sign in to comment.