Skip to content

Commit 0e646f3

Browse files
author
Hana Dusíková
committed
Updated readme.
1 parent 9a37e55 commit 0e646f3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.
66

7-
You can use the single header version from directory `single-header`. This header can be regenerated with `make single-header`.
7+
You can use the single header version from directory `single-header`. This header can be regenerated with `make single-header`. If you are using cmake, you can add this directory as subdirectory and link to target `ctre`.
88

99
More info at [compile-time.re](https://compile-time.re/)
1010

@@ -188,3 +188,7 @@ for (auto match: ctre::range<"([0-9]+),?">(input)) {
188188
std::cout << std::string_view{match.get<0>()} << "\n";
189189
}
190190
```
191+
192+
## Running tests (for developers)
193+
194+
Just run `make` in root of this project.

0 commit comments

Comments
 (0)