Skip to content

Commit

Permalink
Merge pull request #5 from Dup4/feat-readme-integration
Browse files Browse the repository at this point in the history
chore: add Integration in README
  • Loading branch information
Dup4 authored Sep 18, 2023
2 parents 8007a31 + 6a1334f commit eaf515f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,29 @@ Similar to [Jest Snapshot][jest-snapshot], but implemented in C++.
* `SNAPSHOT_DIFF(before_content, after_content)` required `git` binary.
* Support Linux and macOS.

## Integration

### CMake

```cmake
FetchContent_Declare(
snapshot
QUIET
GIT_REPOSITORY https://github.com/Dup4/snapshot-cpp.git
GIT_TAG v{x.y.z} # Where `x.y.z` is the release version you want to use.
)
```

### Bazel

```bazel
git_repository(
name = "snapshot",
remote = "https://github.com/Dup4/snapshot-cpp.git",
tag = "v{x.y.z}", # Where `x.y.z` is the release version you want to use.
)
```

## Usage

<a href="https://asciinema.org/a/608449" target="_blank">
Expand Down

0 comments on commit eaf515f

Please sign in to comment.