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
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,18 @@ A `Makefile` is included to compile the Process Watchdog application.
324
324
make
325
325
```
326
326
327
+
## Building with CMake
328
+
329
+
To build the project with CMake, you need to have CMake and GTest installed.
330
+
331
+
```bash
332
+
mkdir build
333
+
cd build
334
+
cmake ..
335
+
make
336
+
./test/unit_tests
337
+
```
338
+
327
339
## Running the Application
328
340
Use the provided `run.sh` script to start the Process Watchdog application. This script includes a mechanism to restart the watchdog itself if it crashes, providing an additional level of protection.
0 commit comments