Files
aurora/lib/system_info.hpp
Pieter-Jan Briers 974d11dfe7 Log basic system information on startup (#178)
* Log various system information on startup

CPU model, memory, that kinda stuff.

* Use WRL ComPtr<T>

* Use DXGI to list GPUs on Windows

* Compile fix oops

* macOS system info

* Linux impl

* Add comment linking to the microsoft example I used

* How did this compile before?
2026-05-12 14:09:44 -06:00

13 lines
180 B
C++

#pragma once
#include <string>
namespace aurora {
void log_system_information();
namespace system_info {
#if __APPLE__
std::string getSystemVersionString();
#endif
}
}