Skip to content

Commit 3405811

Browse files
committed
add instructions to README on building with CMake or manual Makefiles
1 parent 230465d commit 3405811

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,27 @@
22

33
## Getting started
44

5+
### Get the code
6+
57
```
68
git clone https://github.com/fortran-lang/stdlib
79
cd stdlib
10+
```
11+
12+
### Build with CMake
13+
14+
```
15+
cmake .
816
make
17+
ctest
18+
```
19+
20+
### Build with make
21+
22+
Alternatively, you can build using provided Makefiles:
23+
24+
```
25+
make -f Makefile.manual
926
```
1027

1128
## Contributing

0 commit comments

Comments
 (0)