1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
33 /*!
34 * ======== package.xdc ========
35 * Codec Engine "universal copy" example.
36 *
37 * This example app utilizes codecs that implement the xDM univeral interface.
38 *
39 * This example builds using the XDC build tools, and is portable to
40 * several execution environments. The following files are
41 * included in this package:
42 * @p(dlist)
43 * - `package.xdc`
44 * This file is required to declare a globally unique name for this
45 * package.
46 * - `package.bld`
47 * This file is the build script describing the application to the
48 * XDC built tools.
49 * - `makefile`
50 * A usability makefile wrapper around the XDC build tools.
51 * - `local.cfg`
52 * The XDC configuration file for this executable, when configured
53 * to run "local" codecs. This is the typical configuration for
54 * single processor excution environments.
55 * - `local.tcf`
56 * The BIOS configuration file for this executable. This file is
57 * only necessary when building for a BIOS runtime environment.
58 * It's base name must match that of the XDC config file.
59 * - `remote.cfg`
60 * The XDC configuration file for this executable, when configured
61 * to run "remote" codecs. This is the typical configuration for
62 * multiple processor excution environments.
63 * - `app.c`
64 * The primary source file for this executable.
65 * - `main_BIOS.c` and `main_native.c`
66 * The execution runtime-specific entry point for this executable.
67 * This isolates any runtime-specific startup code from the generic
68 * application.
69 */
70 package ti.sdo.ce.examples.apps.universal_copy [1, 0, 0] {
71 }
72 73 74 75
76