# ----------------------------------------------------------------- # 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. The below path assumes there's an "as3flexunitlib" # folder along side of this library's root folder, with the .swc file in the # bin subdirectory. flexunit.swc = ${basedir}/../as3flexunitlib/bin/as3flexunitlib.swc # The location of the Flex 2 SDK on your sytem. flex2sdk.bin.dir = C:/Program Files/Adobe/Flex Builder 2 Plug-in/Flex SDK 2/bin flex2sdk.lib.dir = C:/Program Files/Adobe/Flex Builder 2 Plug-in/Flex SDK 2/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. flex2sdk.locale = en_US flex2sdk.locale.dir = C:/Program Files/Adobe/Flex Builder 2 Plug-in/Flex SDK 2/frameworks/locale/{locale} #note we have to use aasdoc since the library not includes some AIR files. asdoc.exe = aasdoc compc.exe = ${flex2sdk.bin.dir}/compc.exe mxmlc.exe = ${flex2sdk.bin.dir}/mxmlc.exe # 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 = C:/Program Files/Adobe/Flex Builder 2 Plug-in/Player/debug/SAFlashPlayer.exe # ----------------------------------------------------------------- # File Names - DO NOT MODIFY # ----------------------------------------------------------------- testRunner.dir = . testRunner.name = CoreLibTestRunner library.name = corelib # ----------------------------------------------------------------- # Project Paths - DO NOT MODIFY # ----------------------------------------------------------------- build.dir = ${basedir}/build src.dir = ${basedir}/src tests.dir = ${basedir}/tests bin.dir = ${basedir}/bin docs.dir = ${basedir}/docs