build: reworked build and package to simplify process build: windows dll is now compiled by clang, msvc build added to extras package fix: clear all the implicit conversions in the code (also fixed some bugs) fix: crash on never xash3d-fwgs engine fix: fixed bad bot behaviors on aarch64 fix: crash on some maps due to missing previous node fix: finally removed memset(this) within bot creatin
20 lines
558 B
C
20 lines
558 B
C
//
|
|
// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
|
|
// Copyright © 2004-2023 YaPB Project <yapb@jeefo.net>.
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#pragma once
|
|
|
|
// generated by meson build system
|
|
#ifndef MODULE_BUILD_HASH
|
|
# define MODULE_COMMIT_COUNT "@count@"
|
|
# define MODULE_COMMIT_HASH "@hash@"
|
|
# define MODULE_AUTHOR @author@
|
|
# define MODULE_MACHINE "@machine@"
|
|
# define MODULE_COMPILER "@compiler@"
|
|
# define MODULE_VERSION "@version@"
|
|
# define MODULE_VERSION_FILE @winver@,@count@
|
|
# define MODULE_BUILD_ID "@count@:@hash@"
|
|
#endif
|