2023-04-02 12:17:12 +03:00
|
|
|
#
|
|
|
|
|
# YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
|
2024-02-24 02:20:02 +03:00
|
|
|
# Copyright © YaPB Project Developers <yapb@jeefo.net>.
|
2023-04-02 12:17:12 +03:00
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
option('64bit', type : 'boolean', value : false,
|
2023-06-09 06:27:04 +03:00
|
|
|
description: 'Enables bot build with as 64-bit binary.')
|
|
|
|
|
|
|
|
|
|
option('native', type : 'boolean', value : false,
|
2023-06-27 14:20:23 +03:00
|
|
|
description: 'Configure compiler for a native machine build.')
|
|
|
|
|
|
|
|
|
|
option('winxp', type : 'boolean', value : false,
|
|
|
|
|
description: 'Configure MSVC build to output Windows XP compatible binary.')
|
2024-10-27 20:51:37 +03:00
|
|
|
|
|
|
|
|
option('nosimd', type : 'boolean', value : false,
|
|
|
|
|
description: 'Disables all SIMD or NEON optimizations.')
|
2025-03-16 18:25:15 +03:00
|
|
|
|
|
|
|
|
option('static_linkent', type : 'boolean', value : false,
|
|
|
|
|
description: 'Use predefined entity link list, instead of hooking dlsym.')
|
2024-10-27 20:51:37 +03:00
|
|
|
|