We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d0827 commit b6cd606Copy full SHA for b6cd606
2 files changed
.gitignore
@@ -1,4 +1,5 @@
1
/build
2
+/build-release
3
.DS_Store
4
.venv
5
__pycache__/
README.md
@@ -33,6 +33,21 @@ Built analyzer:
33
build/Analyzers/libFlexRayAnalyzer.so
34
```
35
36
+## Release Build
37
+
38
+Build optimized release artifacts in a separate build directory:
39
40
+```bash
41
+cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release
42
+cmake --build build-release --config Release
43
+```
44
45
+Release analyzer:
46
47
+```text
48
+build-release/Analyzers/libFlexRayAnalyzer.so
49
50
51
## Decoding Example
52
53

0 commit comments