dullahan_version.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. **************************************************************************
  3. IMPORTANT: This file (dullahan_version.h) is automatically generated by
  4. CMake using dullahan_version.h.in as a template.
  5. Do not edit dullahan_version.h by hand otherwise your changes
  6. will be the lost next time you run CMake with the
  7. CMakeLists.txt file in the root directory.
  8. **************************************************************************
  9. @brief Dullahan - a headless browser rendering engine
  10. based around the Chromium Embedded Framework
  11. @author Callum Prentice 2017
  12. Copyright (c) 2017, Linden Research, Inc.
  13. Permission is hereby granted, free of charge, to any person obtaining a copy
  14. of this software and associated documentation files (the "Software"), to deal
  15. in the Software without restriction, including without limitation the rights
  16. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  17. copies of the Software, and to permit persons to whom the Software is
  18. furnished to do so, subject to the following conditions:
  19. The above copyright notice and this permission notice shall be included in
  20. all copies or substantial portions of the Software.
  21. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. THE SOFTWARE.
  28. */
  29. #ifndef _DULLAHAN_VERSION
  30. #define _DULLAHAN_VERSION
  31. // version of this package
  32. #define DULLAHAN_VERSION_MAJOR 1
  33. #define DULLAHAN_VERSION_MINOR 14
  34. #define DULLAHAN_VERSION_POINT 0
  35. // The build version number as of v1.2 is now the date/time the build was made
  36. // It is only regenerated if the constructed version header (dullahan_version.h)
  37. // is not present when the Cmake script is executed. Not perfect - one can still
  38. // have different build numbers for same set of source files - but it thankfully
  39. // removed the requirement to remember to change the version/build number each
  40. // time a change is made to the Dullahan source (which was often missed).
  41. // Credit for suggestion to Henri Beauchamp
  42. #define DULLAHAN_VERSION_BUILD 202310131309
  43. // version numbers pulled from CEF build via Cmake
  44. #define CEF_VERSION "118.4.1+g3dd6078+chromium-118.0.5993.54"
  45. #define CHROME_VERSION_MAJOR 118
  46. #define CHROME_VERSION_MINOR 0
  47. #define CHROME_VERSION_BUILD 5993
  48. #define CHROME_VERSION_PATCH 54
  49. #endif // _DULLAHAN_VERSION