fix: %t placeholder should return damage inflictor when used in team attack section of chat fix: all arguments in bot commands are lowercased (resolves #680) bot: disable threads when engine's timescale is active bot: a little refactor for the code all over the places linkage: resolved crash due to sse alignment on ancient engines (resolves #614) utils move wave parse into crlib practice: move loading practice to thread pool build: allow to build with static linkents instead of hooking dlsym Co-Authored-By: Max <161382234+dyspose@users.noreply.github.com>
22 lines
798 B
Meson
22 lines
798 B
Meson
#
|
|
# YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
|
|
# Copyright © YaPB Project Developers <yapb@jeefo.net>.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
option('64bit', type : 'boolean', value : false,
|
|
description: 'Enables bot build with as 64-bit binary.')
|
|
|
|
option('native', type : 'boolean', value : false,
|
|
description: 'Configure compiler for a native machine build.')
|
|
|
|
option('winxp', type : 'boolean', value : false,
|
|
description: 'Configure MSVC build to output Windows XP compatible binary.')
|
|
|
|
option('nosimd', type : 'boolean', value : false,
|
|
description: 'Disables all SIMD or NEON optimizations.')
|
|
|
|
option('static_linkent', type : 'boolean', value : false,
|
|
description: 'Use predefined entity link list, instead of hooking dlsym.')
|
|
|