# ----------------------------------------------------------------- # User-Defined Paths # # Modify these path values to reflect paths on your system # ----------------------------------------------------------------- # The path to the flexunit.swc -- Required when trying to build/run unit # tests for this library. flexunit.swc = ${lib.dir}/flexunit.swc # The location of the Flex SDK on your system. # I copied the SDK directory into my root directory on my computer flexsdk.dir = /testsdk/3.4 # I also have the Flex 3 SDK at root, and by uncommenting the line below I can switch # between compiling with Flex 2 SDK and Flex 3 SDK, for now we'll stick with 2 a little longer... # flexsdk.dir = /Applications/Adobe Flex Builder 3 Plug-in/sdks/3.0.0 flexsdk.bin.dir = ${flexsdk.dir}/bin flexsdk.lib.dir = ${flexsdk.dir}/frameworks/libs # Note that the locale dir uses the {locale} token at the end to specify the directory # of language-specific files. This is replaced by the compiler with the locale defined # by the locale property below. flexsdk.locale = en_US flexsdk.locale.dir = ${flexsdk.dir}/frameworks/locale/{locale} flexsdk.templates.dir = ${flexsdk.dir}/asdoc/templates asdoc.exe = ${flexsdk.bin.dir}/asdoc compc.exe = ${flexsdk.bin.dir}/compc mxmlc.exe = ${flexsdk.bin.dir}/mxmlc # Location of the command-line SVN client. svn.exe = /usr/local/bin/svn # The debug player is necessary here because it writes trace statements to a flashlog.txt # file. This allows us to examine the .txt file and determine the status of unit tests # in an automated fashion. # flashDebugPlayer.exe = /Applications/Adobe Flex Builder 2 Plug-in/Player/debug/SAFlashPlayer.exe # ----------------------------------------------------------------- # File Names - DO NOT MODIFY # ----------------------------------------------------------------- testRunner.dir = . testRunner.name = FlexLibTestRunner library.name = flexlib # ----------------------------------------------------------------- # Project Paths - DO NOT MODIFY # ----------------------------------------------------------------- bin.dir = ${basedir}/bin build.dir = ${basedir}/build docs.dir = ${basedir}/docs examples.dir = ${basedir}/examples lib.dir = ${basedir}/lib src.dir = ${basedir}/src tests.dir = ${basedir}/tests