Skip to content

Commit f2c21f4

Browse files
authored
Merge pull request #7 from markvilar/markvilar-patch-1
Update README.md
2 parents b89e38a + 24b113f commit f2c21f4

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,22 @@ Template project for C++ with CMake and Conan 2.0 support.
1212

1313
## Conan workflow
1414

15-
The project workflow for Conan 2.0 is listed below. See the `conan/profiles`
16-
directory for a set of pre-generated profiles.
15+
The project workflow for Conan 2.0 is listed below. For more comprehensive details, check out the Conan documentation: [https://docs.conan.io/2/index.html](https://docs.conan.io/2/index.html)
16+
See the `conan/profiles` directory for a set of pre-generated profiles.
1717

1818
```sh
19-
# Create a default profile
19+
# Install conan with pip
20+
pip install --user conan
21+
22+
# Create a profile by detecting installed build systems and compilers
2023
conan profile detect
2124

22-
# Install the dependencies
25+
# Install the project dependencies
2326
conan install . --profile <path/to/profile> --build missing
2427

25-
# Build the package
28+
# Build the project package
2629
conan build . --profile <path/to/profile> --build missing
2730

28-
# Create the package
31+
# Create the project package
2932
conan create . --profile <path/to/profile> --build missing
3033
```

0 commit comments

Comments
 (0)