17 lines
501 B
C
17 lines
501 B
C
|
/* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
Licensed under the MIT License. */
|
||
|
|
||
|
#ifndef K4AVERSION_H
|
||
|
#define K4AVERSION_H
|
||
|
|
||
|
#define K4A_VERSION_MAJOR @K4A_VERSION_MAJOR@
|
||
|
#define K4A_VERSION_MINOR @K4A_VERSION_MINOR@
|
||
|
#define K4A_VERSION_PATCH @K4A_VERSION_PATCH@
|
||
|
#define K4A_VERSION_PRERELEASE "@K4A_VERSION_PRERELEASE@"
|
||
|
#define K4A_VERSION_BUILD_METADATA "@K4A_VERSION_BUILD_METADATA@"
|
||
|
|
||
|
#define K4A_VERSION_STR "@K4A_VERSION_STR@"
|
||
|
|
||
|
#endif
|
||
|
|