ProfinetConnector/libs/include/pnet_version.h

42 lines
1.0 KiB
C
Raw Normal View History

/*********************************************************************
* _ _ _
* _ __ | |_ _ | | __ _ | |__ ___
* | '__|| __|(_)| | / _` || '_ \ / __|
* | | | |_ _ | || (_| || |_) |\__ \
* |_| \__|(_)|_| \__,_||_.__/ |___/
*
* www.rt-labs.com
* Copyright 2018 rt-labs AB, Sweden.
*
* This software is dual-licensed under GPLv3 and a commercial
* license. See the file LICENSE.md distributed with this software for
* full license information.
********************************************************************/
#ifndef PNET_VERSION_H
#define PNET_VERSION_H
2022-12-14 14:25:33 +03:00
#define PROFINET_GIT_REVISION "da63bec-dirty"
#if !defined(PNET_VERSION_BUILD) && defined(PROFINET_GIT_REVISION)
#define PNET_VERSION_BUILD PROFINET_GIT_REVISION
#endif
/* clang-format-off */
#define PNET_VERSION_MAJOR 0
#define PNET_VERSION_MINOR 2
#define PNET_VERSION_PATCH 0
#if defined(PNET_VERSION_BUILD)
#define PNET_VERSION \
"0.2.0+" PNET_VERSION_BUILD
#else
#define PNET_VERSION \
"0.2.0"
#endif
/* clang-format-on */
#endif /* PNET_VERSION_H */