| 1 | # ----------------------------------------------------------------- |
|---|
| 2 | # User-Defined |
|---|
| 3 | # |
|---|
| 4 | # Modify these path values to reflect paths on your system |
|---|
| 5 | # ----------------------------------------------------------------- |
|---|
| 6 | |
|---|
| 7 | # The location of the Flex SDK on your sytem. |
|---|
| 8 | flexsdk = C:/Program Files/Adobe/Flex Builder 3/sdks/3.3.0 |
|---|
| 9 | |
|---|
| 10 | flexsdk.bin.dir = ${flexsdk}/bin |
|---|
| 11 | flexsdk.lib.dir = ${flexsdk}/frameworks/libs |
|---|
| 12 | |
|---|
| 13 | # Flash player target |
|---|
| 14 | flexsdk.target = 10.0.0 |
|---|
| 15 | |
|---|
| 16 | browser = C:/Program Files/Mozilla Firefox/firefox.exe |
|---|
| 17 | |
|---|
| 18 | # Note that the locale dir uses the {locale} token at the end to specify the directory |
|---|
| 19 | # of language-specific files. This is replaced by the compiler with the locale defined |
|---|
| 20 | # by the locale property below. |
|---|
| 21 | flexsdk.locale = en_US |
|---|
| 22 | flexsdk.locale.dir = ${flexsdk}/frameworks/locale/${flexsdk.locale} |
|---|
| 23 | |
|---|
| 24 | execextention = .exe |
|---|
| 25 | |
|---|
| 26 | asdoc.exe = ${flexsdk.bin.dir}/asdoc${execextention} |
|---|
| 27 | compc.exe = ${flexsdk.bin.dir}/compc${execextention} |
|---|
| 28 | mxmlc.exe = ${flexsdk.bin.dir}/mxmlc${execextention} |
|---|
| 29 | |
|---|
| 30 | # The location of Flex Unit on your sytem. |
|---|
| 31 | flexunit = C:/Program Files/Adobe/FlexUnit |
|---|
| 32 | |
|---|
| 33 | flexunit.lib.dir = ${flexunit}/libs |
|---|
| 34 | |
|---|
| 35 | flashDebugPlayer.exe = C:/Program Files/Adobe/Flex Builder 3/Player/win/FlashPlayer.exe |
|---|
| 36 | |
|---|
| 37 | # ----------------------------------------------------------------- |
|---|
| 38 | # Project Files - DO NOT MODIFY |
|---|
| 39 | # ----------------------------------------------------------------- |
|---|
| 40 | application.package = com/longtailvideo/jwplayer/player |
|---|
| 41 | application.class = Player |
|---|
| 42 | |
|---|
| 43 | # ----------------------------------------------------------------- |
|---|
| 44 | # Project Paths - DO NOT MODIFY |
|---|
| 45 | # ----------------------------------------------------------------- |
|---|
| 46 | build.dir = ${basedir}/build |
|---|
| 47 | src.dir = ${basedir}/src |
|---|
| 48 | lib.dir = ${basedir}/libs |
|---|
| 49 | release.dir = ${basedir}/bin-release |
|---|
| 50 | debug.dir = ${basedir}/bin-debug |
|---|
| 51 | docs.dir = ${basedir}/asdoc |
|---|
| 52 | test.src.dir = ${basedir}/test |
|---|
| 53 | test.bin.dir = ${basedir}/bin-test |
|---|
| 54 | sdk.dir = ${release.dir}/sdk |
|---|