FB_CYGWIN
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbcygwin
- Last revised: 2016-02-10
Intrinsic define set by the compiler
Syntax
` FB_CYGWIN
`
Description
Define without a value created at compile time in the Cygwin version of the compiler, or when the -target cygwin command line option is used. It can be used to compile parts of the program only if the target is Cygwin.
Examples
start GeSHi
vb
#IFDEF __FB_CYGWIN__
'...instructions only for Cygwin...
#ELSE
'...instructions not for Cygwin...
#ENDIFend GeSHi
Differences from QB
- New to FreeBASIC
See also
__FB_LINUX____FB_WIN32___FB_UNIX__- Compiler Option: -target
Back to DocToc