Skip to content

Commit 462654a

Browse files
committed
Grammar and buidl dir in docs changes
1 parent d7f5341 commit 462654a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ A bash script is provided for building ([build.sh](./build.sh)). However, there
4040
### CMake
4141
>Note: we have some [PFunit tests](./testing/pFUnit/) which require a local version of PFunit to be pre-built on your device. Once built, the path to the PFunit `installed` dir will need to be passed via `-DCMAKE_PREFIX_PATH`.
4242
43-
One build system we are utilising cmake (see [CMakeLists.txt](./CMakeLists.txt)). Therefore, to build this repository, please run the following
43+
One build system we are utilising is cmake (see [CMakeLists.txt](./CMakeLists.txt)). Therefore, to build this repository, please run the following
4444
```sh
45-
cmake -DCMAKE_PREFIX_PATH=/path/to/pfunit/installed/dir -B build
45+
cmake -DCMAKE_PREFIX_PATH=/path/to/pfunit/installed/dir -B build-cmake
4646
```
4747
This will create a [build](./build) directory from within which the project can be compiled...
4848
```sh
49-
cmake --build build
49+
cmake --build build-cmake
5050
```
5151
This will produce executables for the two src codes, `fortran-tooling-mesh-generator` and `fortran-tooling-poisson`.
5252

@@ -64,13 +64,13 @@ If you have built using CMake, you can run the mesh generator by directly callin
6464
./build/fortran-tooling-mesh-generator <box_size> <edge_size>
6565
```
6666

67-
If you have built using FPM, you can run the mesh generator via FPM
67+
If you have built using FPM, you can also run the mesh generator via FPM
6868
```sh
6969
fpm run mesh_generator -- <box_size> <edge_size>
7070
```
7171

7272
### Poisson solver
73-
If you have built using CMake, you can run the poisson solver by directly calling the executable
73+
If you have built using CMake, you can also run the poisson solver by directly calling the executable
7474
```sh
7575
./build/fortran-tooling-poisson <path_to_mesh_file>
7676
```

0 commit comments

Comments
 (0)