https://github.com/codiepp/os-metrics
capture operating system metrics on Windows, macOSX, Linux, BSD
https://github.com/codiepp/os-metrics
Last synced: 4 months ago
JSON representation
capture operating system metrics on Windows, macOSX, Linux, BSD
- Host: GitHub
- URL: https://github.com/codiepp/os-metrics
- Owner: CodiePP
- License: gpl-3.0
- Created: 2021-01-25T21:28:26.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T22:31:01.000Z (about 2 years ago)
- Last Synced: 2025-03-07T18:04:58.610Z (12 months ago)
- Language: C
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# os-metrics
capture operating system metrics on Windows, macOSX, Linux, BSD
## building
```
mkdir -vp build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
```
on Windows (MinGW64):
```
cmake -DCMAKE_BUILD_TYPE=Debug -G "MSYS Makefiles" ..
```
### cross-compilation
```
cmake --fresh -DCMAKE_TOOLCHAIN_FILE=../ToolchainWin64.cmake -DCMAKE_BUILD_TYPE=Debug ..
```