Files
HardCompound/README.md

37 lines
520 B
Markdown
Raw Normal View History

# HardCompound
A Le Mans Ultimate telemetry viewer with a hosted database.
2025-12-28 18:52:07 +01:00
## Prerequisites for building on Linux (Arch):
### Mariadb:
`sudo pacman -S mariadb-libs`
2026-01-08 14:51:17 +01:00
### Valgrind
`sudo pacman -S valgrind`
## Running:
`make run` -> run a linux binary with a sample data
`make run valgrind=true` -> run the linux binary with valgrind
2025-12-28 18:52:07 +01:00
## Compiling:
### Debug:
2025-12-28 19:30:56 +01:00
`make debug`
### Release:
2025-12-28 19:30:56 +01:00
`make release`
### Platform:
#### Windows:
2025-12-28 18:52:07 +01:00
`make target=windows`
#### Linux (Default):
2025-12-28 18:52:07 +01:00
2026-01-08 14:51:17 +01:00
`make target=linux` or just `make`