Skip to content

Commit dded7d9

Browse files
committed
Minor README fix, bumped version for publication.
1 parent be29609 commit dded7d9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.24)
22

33
project(rds2cpp
4-
VERSION 1.0.0
4+
VERSION 1.0.1
55
DESCRIPTION "Standalone C++ library for reading RDS files"
66
LANGUAGES CXX)
77

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ rds2cpp::write_rds(file_info, "my_env.rds");
178178
179179
If you're using CMake, you just need to add something like this to your `CMakeLists.txt`:
180180
181-
```
181+
```cmake
182182
include(FetchContent)
183183
184184
FetchContent_Declare(
@@ -192,7 +192,7 @@ FetchContent_MakeAvailable(rds2cpp)
192192

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

195-
```
195+
```cmake
196196
# For executables:
197197
target_link_libraries(myexe rds2cpp)
198198

0 commit comments

Comments
 (0)