FB_BUILD_FORK_ID
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbbuildforkid
- Last revised: 2024-04-05
Intrinsic define (macro string) set by the compiler
Syntax
` FB_BUILD_FORK_ID
`
Description
Substituted by a string of the compiler's custom defined project fork identifier name if defined at fbc build time, or an empty string if it was not defined.
This value is an empty string for releases made by the FreeBASIC Development Team. Community developers and experimenters may define this value when building their own fbc packages using the makefile to help users identify that fbc may be a special build and may have specific features not in the main release packages.
Examples
start GeSHi
vb
Print "fbc fork id: "; __FB_BUILD_FORK_ID__end GeSHi
Version
- Since fbc 1.20.0
Differences from QB
- New to FreeBASIC
Back to DocToc