Skip to content

Commit 37ddcd3

Browse files
Enhance installation notes (#63)
* Enhance installation notes * Ignore all README.md files
1 parent ab30bd0 commit 37ddcd3

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
paths-ignore:
88
- '.vscode/**'
99
- 'LICENSE'
10-
- 'README.md'
10+
- '**/README.md'
1111
pull_request:
1212
paths-ignore:
1313
- '.vscode/**'
1414
- 'LICENSE'
15-
- 'README.md'
15+
- '**/README.md'
1616
workflow_dispatch:
1717

1818
env:

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020

2121
## Installation
2222

23-
Copy the [include](https://github.com/andreiavrammsd/cpp-channel/tree/master/include) directory to your project and add it to your include path. Or
24-
see [CMakeLists.txt](https://github.com/andreiavrammsd/cpp-channel/blob/master/examples/cmake-project/CMakeLists.txt) from the [CMake project example](https://github.com/andreiavrammsd/cpp-channel/tree/master/examples/cmake-project).
23+
* Copy the [include](https://github.com/andreiavrammsd/cpp-channel/tree/master/include) directory into your project and add it to your include path.
24+
* With [CMake](https://github.com/andreiavrammsd/cpp-channel/tree/master/examples/cmake-project)
25+
* With [Bazel](https://github.com/andreiavrammsd/cpp-channel/tree/master/examples/bazel-project)
2526

2627
## Usage
2728

@@ -98,7 +99,7 @@ int main() {
9899
}
99100
```
100101

101-
See [examples](https://github.com/andreiavrammsd/cpp-channel/tree/master/examples).
102+
See [examples](https://github.com/andreiavrammsd/cpp-channel/tree/master/examples) and [documentation](https://andreiavrammsd.github.io/cpp-channel/).
102103

103104
<br>
104105

examples/bazel-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CMake project
1+
# Bazel project
22

33
Example of using C++ Channel in a project with Bazel.
44

0 commit comments

Comments
 (0)