version.h.in 650 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. /*
  6. * version.h.in is a template file. version.h is a generated file.
  7. * Please do not edit both files directly.
  8. *
  9. * Any changes to the version should be done in build-scripts/version.cmake.
  10. *
  11. * Continue to maintain the version.h for certain embedded platforms.
  12. */
  13. #ifndef _WAMR_VERSION_H_
  14. #define _WAMR_VERSION_H_
  15. /* clang-format off */
  16. #define WAMR_VERSION_MAJOR @WAMR_VERSION_MAJOR@
  17. #define WAMR_VERSION_MINOR @WAMR_VERSION_MINOR@
  18. #define WAMR_VERSION_PATCH @WAMR_VERSION_PATCH@
  19. /* clang-format on */
  20. #endif