Skip to content

Instantly share code, notes, and snippets.

@ibilon
Created November 17, 2015 14:47
Show Gist options
  • Save ibilon/573885e76ea7bd402179 to your computer and use it in GitHub Desktop.
Save ibilon/573885e76ea7bd402179 to your computer and use it in GitHub Desktop.
Compile time macro define information
class Test {
static function main() {
trace(isDemo());
}
macro static function isDemo () : haxe.macro.Expr
{
return macro $v{haxe.macro.Compiler.getDefine("demo") != null};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment