C-library, that provide CPU, RAM and HDD information.
In one .cpp/.c file add :
#define SYSTEM_INFORMATION_IMPLEMENTATION
#include "SystemInformation.h"
Then you can use it :
struct SystemInformation information;
if (!getSystemInformation(&information))
{
// something went wrong.
}