LibraryInfo.h 406 B

123456789101112131415161718192021
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. #ifdef URHO3D_IS_BUILDING
  5. #include "Urho3D.h"
  6. #else
  7. #include <Urho3D/Urho3D.h>
  8. #endif
  9. namespace Urho3D
  10. {
  11. /// Return git description of the HEAD when building the library.
  12. URHO3D_API const char* GetRevision();
  13. /// Return baked-in compiler defines used when building the library.
  14. URHO3D_API const char* GetCompilerDefines();
  15. }