We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac87f69 commit 304a3f5Copy full SHA for 304a3f5
README.md
@@ -75,16 +75,20 @@ graph TD
75
git clone https://github.com/parvenuprompting/log-analyzer.git
76
cd log_analyzer
77
78
-# Build CLI and run analysis
79
-make log_analyzer
80
-./log_analyzer --input tests/sample_log.txt --report report.txt
+# Configure & Build (CMake)
+mkdir build
+cd build
81
+cmake ..
82
+make
83
-# Build GUI app
-make build-gui
84
+# Run CLI
85
+./log_analyzer --input ../tests/sample_log.txt --report report.txt
86
+
87
+# Run GUI
88
./log_analyzer_gui
89
-# Run Tests (Catch2)
-make test
90
+# Run Tests
91
+ctest
92
```
93
94
## 🛠 Design Decisions & Trade-offs
0 commit comments