| 1 | # ----------------------------------------------------------------- |
|---|
| 2 | # User-Defined |
|---|
| 3 | # |
|---|
| 4 | # Modify these path values to reflect paths on your system |
|---|
| 5 | # ----------------------------------------------------------------- |
|---|
| 6 | |
|---|
| 7 | # The plugin version |
|---|
| 8 | version=0.1 |
|---|
| 9 | |
|---|
| 10 | # Uncomment this line for Windows systems, and enter the path to the Flex SDK |
|---|
| 11 | # flexsdk = C:/Program Files/Adobe/Flex Builder 3/sdks/3.2.0 |
|---|
| 12 | # Uncomment this line for OS X and Linux systems and enter the path to the Flex SDK |
|---|
| 13 | flexsdk = /Developer/SDKs/flex_sdk_4 |
|---|
| 14 | |
|---|
| 15 | flexsdk.bin.dir = ${flexsdk}/bin |
|---|
| 16 | flexsdk.lib.dir = ${flexsdk}/frameworks/libs |
|---|
| 17 | |
|---|
| 18 | browser = C:/Program Files/Mozilla Firefox/firefox.exe |
|---|
| 19 | |
|---|
| 20 | # Note that the locale dir uses the {locale} token at the end to specify the directory |
|---|
| 21 | # of language-specific files. This is replaced by the compiler with the locale defined |
|---|
| 22 | # by the locale property below. |
|---|
| 23 | flexsdk.locale = en_US |
|---|
| 24 | flexsdk.locale.dir = ${flexsdk}/frameworks/locale/{locale} |
|---|
| 25 | |
|---|
| 26 | execextention = .exe |
|---|
| 27 | |
|---|
| 28 | asdoc.exe = ${flexsdk.bin.dir}/asdoc${execextention} |
|---|
| 29 | compc.exe = ${flexsdk.bin.dir}/compc${execextention} |
|---|
| 30 | mxmlc.exe = ${flexsdk.bin.dir}/mxmlc${execextention} |
|---|
| 31 | |
|---|
| 32 | flashDebugPlayer.exe = C:/Program Files/Adobe/Flex Builder 3/Player/win/FlashPlayer.exe |
|---|
| 33 | |
|---|
| 34 | # ----------------------------------------------------------------- |
|---|
| 35 | # Project Files - DO NOT MODIFY |
|---|
| 36 | # ----------------------------------------------------------------- |
|---|
| 37 | application.package = |
|---|
| 38 | application.class = MyMediaProvider |
|---|
| 39 | application.name = mymediaprovider |
|---|
| 40 | |
|---|
| 41 | # ----------------------------------------------------------------- |
|---|
| 42 | # Project Paths - DO NOT MODIFY |
|---|
| 43 | # ----------------------------------------------------------------- |
|---|
| 44 | build.dir = ${basedir}/build |
|---|
| 45 | src.dir = ${basedir}/src |
|---|
| 46 | lib.dir = ${basedir}/lib |
|---|
| 47 | release.dir = ${basedir}/bin-release |
|---|
| 48 | debug.dir = ${basedir}/bin-debug |
|---|
| 49 | debug-template.dir = ${basedir}/debug-template |
|---|
| 50 | docs.dir = ${basedir}/asdoc |
|---|
| 51 | includes.dir = ${basedir}/includes |
|---|