You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.**Create build folder** for out-of-source build: `mkdir build && cd build`
35
-
2.**Dependencies** are installed with Conan: `conan install ..`
36
-
3.**Build** can also be triggered with Conan: `conan build ..`. This will configure, build and test the project.
42
+
```sh
43
+
# Create build folder for out-of-source build
44
+
mkdir build &&cd build
45
+
# Install Dependencies with Conan
46
+
conan install ..
47
+
# Configure, Build & Test
48
+
conan build ..
49
+
```
37
50
-**Clion**: Install the [Conan Plugin](https://plugins.jetbrains.com/plugin/11956-conan) before configuring & building the project as usual.
38
51
39
52
### Test
@@ -57,7 +70,7 @@ This template uses [Github Actions](https://github.com/features/actions) for aut
57
70
When a new release is created in Github, the resulting artifact is automatically uploaded to [a public artifactory repository](https://jothepro.jfrog.io/ui/repos/tree/General/conan-public%2F_%2Fmylibrary)
58
71
- The workflow `publish-pages.yaml` automatically builds and publishes the documentation to [Github Pages](https://jothepro.github.io/cpp-library-template/) when a new release is created in Github.
59
72
60
-
## File Structure
73
+
## Directory Structure
61
74
62
75
```
63
76
.
@@ -101,10 +114,10 @@ This template uses [Github Actions](https://github.com/features/actions) for aut
0 commit comments