Initial Cross Platform Work

This commit is contained in:
2025-04-24 16:39:24 +02:00
parent dbffb7f316
commit 13c2869ba8
170 changed files with 18611 additions and 10292 deletions

View File

@@ -35,13 +35,21 @@ SOFTWARE.
#define PALLADIUM_GIT_BRANCH "unknown"
#endif
const std::string PD::LibInfo::CompiledWith() {
PD_CORE_API const std::string PD::LibInfo::CompiledWith() {
return Strings::GetCompilerVersion();
}
const std::string PD::LibInfo::CxxVersion() {
PD_CORE_API const std::string PD::LibInfo::CxxVersion() {
return "CPP: " + std::to_string(__cplusplus);
}
const std::string PD::LibInfo::BuildTime() { return __DATE__ " - " __TIME__; }
const std::string PD::LibInfo::Version() { return PALLADIUM_VERSION; }
const std::string PD::LibInfo::Commit() { return PALLADIUM_GIT_COMMIT; }
const std::string PD::LibInfo::Branch() { return PALLADIUM_GIT_BRANCH; }
PD_CORE_API const std::string PD::LibInfo::BuildTime() {
return __DATE__ " - " __TIME__;
}
PD_CORE_API const std::string PD::LibInfo::Version() {
return PALLADIUM_VERSION;
}
PD_CORE_API const std::string PD::LibInfo::Commit() {
return PALLADIUM_GIT_COMMIT;
}
PD_CORE_API const std::string PD::LibInfo::Branch() {
return PALLADIUM_GIT_BRANCH;
}