Skip to content

Commit 304a3f5

Browse files
Docs: Update README build instructions to use CMake (Makefile is deprecated)
1 parent ac87f69 commit 304a3f5

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,20 @@ graph TD
7575
git clone https://github.com/parvenuprompting/log-analyzer.git
7676
cd log_analyzer
7777

78-
# Build CLI and run analysis
79-
make log_analyzer
80-
./log_analyzer --input tests/sample_log.txt --report report.txt
78+
# Configure & Build (CMake)
79+
mkdir build
80+
cd build
81+
cmake ..
82+
make
8183

82-
# Build GUI app
83-
make build-gui
84+
# Run CLI
85+
./log_analyzer --input ../tests/sample_log.txt --report report.txt
86+
87+
# Run GUI
8488
./log_analyzer_gui
8589

86-
# Run Tests (Catch2)
87-
make test
90+
# Run Tests
91+
ctest
8892
```
8993

9094
## 🛠 Design Decisions & Trade-offs

0 commit comments

Comments
 (0)