Book Image

haXe 2 Beginner's Guide

5 (1)
Book Image

haXe 2 Beginner's Guide

5 (1)

Overview of this book

Table of Contents (21 chapters)
haxe 2
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Conditional compilation


haXe allows you to do conditional compilation. This means that some parts of the code can be compiled and others can be ignored depending on the flags you give to the compiler and depending on the platform you're targeting.

Conditional compilation instructions always begin with the #if instruction.

Conditional compilation depending on flags

You can define a flag on the command line by using the –D switch. So, to define the myway flag, you would use the following: -D myway.

Then, you use it in the following way:

#if myway
//Code here compiled only if myway is defined
#else
//Code here compiled in the other case
#end

There is also a not operator:

#if !myway
//Code here compiled only myway is not defined
#end

Conditional compilation depending on the target

Conditional compilation depending on the target basically works in the same way, except that the name of the target you are compiling to automatically gets set. So, you will have something like the following:

#if cpp
//C++ code...