2024-11-26 03:39:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* version.h.in is a template file. version.h is a generated file.
|
|
|
|
* Please do not edit both files directly.
|
|
|
|
*
|
2025-01-17 04:05:05 +00:00
|
|
|
* Any changes to the version should be done in build-scripts/version.cmake.
|
|
|
|
*
|
|
|
|
* Continue to maintain the version.h for certain embedded platforms.
|
2024-11-26 03:39:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _WAMR_VERSION_H_
|
|
|
|
#define _WAMR_VERSION_H_
|
|
|
|
|
|
|
|
/* clang-format off */
|
|
|
|
#define WAMR_VERSION_MAJOR @WAMR_VERSION_MAJOR@
|
|
|
|
#define WAMR_VERSION_MINOR @WAMR_VERSION_MINOR@
|
|
|
|
#define WAMR_VERSION_PATCH @WAMR_VERSION_PATCH@
|
|
|
|
/* clang-format on */
|
|
|
|
|
|
|
|
#endif
|