FB_ANDROID
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbandroid
- Last revised: 2024-01-07
Intrinsic define set by the compiler
Syntax
` FB_ANDROID
`
Description
Define without a value created at compile time when targeting android platforms, when the -target android command line option is used. It can be used to compile parts of the program only for a such target.
Examples
start GeSHi
vb
#IFDEF __FB_ANDROID__
'...instructions only for android target...
#ELSE
'...instructions not for android target...
#ENDIFend GeSHi
Version
- Since fbc 1.20.0
Differences from QB
- New to FreeBASIC
See also
Back to DocToc