template showing how to inherit FLEX_HOME from the environment.
# change this to your Flex SDK directory path
# e.g. FLEX_HOME=/home/andy/bin/flex/
# e.g. FLEX_HOME=C:/Program Files/Adobe/Flex Builder 3/sdks/3.5.0
+# e.g. FLEX_HOME=${env.FLEX_HOME}
FLEX_HOME=/path/to/your/flex/sdk
# this points to your project's src directory
<project name="Potlatch2 über compile system" default="debug">
+ <!-- load properties from the environment -->
+ <property environment="env" />
+
<!-- load previously defined configuration properties file -->
<property file="build.properties" />
<target name="halcyon">
<mxmlc file="halcyon_viewer.as" />
</target>
-</project>
\ No newline at end of file
+</project>