Skip to content

Commit

Permalink
Minor README fix, bumped version for publication.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Aug 29, 2023
1 parent be29609 commit dded7d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.24)

project(rds2cpp
VERSION 1.0.0
VERSION 1.0.1
DESCRIPTION "Standalone C++ library for reading RDS files"
LANGUAGES CXX)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ rds2cpp::write_rds(file_info, "my_env.rds");
If you're using CMake, you just need to add something like this to your `CMakeLists.txt`:
```
```cmake
include(FetchContent)
FetchContent_Declare(
Expand All @@ -192,7 +192,7 @@ FetchContent_MakeAvailable(rds2cpp)

Then you can link to **rds2cpp** to make the headers available during compilation:

```
```cmake
# For executables:
target_link_libraries(myexe rds2cpp)
Expand Down

0 comments on commit dded7d9

Please sign in to comment.