Skip to content

Commit

Permalink
Update version in readme (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLartians authored Jan 21, 2021
1 parent f5788b6 commit dcec3a0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ void example() {
PEGParser requires at least cmake 3.14 and the ability to compile C++17 code. The following shows how to compile and run the calculator example.

```bash
git clone https://github.com/TheLartians/PegParser
cd PegParser
cmake -Sexample -Bbuild/example
cmake --build build/example -j8
./build/example/calculator
Expand All @@ -57,11 +59,11 @@ PEGParser can be easily added to your project through [CPM.cmake](https://github
```cmake
CPMAddPackage(
NAME PEGParser
VERSION 2.0
GIT_REPOSITORY https://github.com/TheLartians/PEGParser.git
VERSION 2.1.1
GITHUB_REPOSITORY TheLartians/PEGParser
)
target_link_libraries(myProject PEGParser)
target_link_libraries(myProject PEGParser::PEGParser)
```

## Project goals
Expand Down

0 comments on commit dcec3a0

Please sign in to comment.