⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 package.bld

📁 TI Algorithm Soft Kit 5.10 仅包括实例及其原代码
💻 BLD
字号:
/* *  Copyright 2006 by Texas Instruments Incorporated. * *  All rights reserved. Property of Texas Instruments Incorporated. *  Restricted rights to use, duplicate or disclose this code are *  granted through contract. * *//* *  ======== package.bld ======== *  Build script for this package. *//* If you don't want to redistribute your sources, set this to false. */Pkg.attrs.exportSrc = true;/* * Array of files to include in the release.  Libraries must be explicitly * listed when you don't use the XDC Build.  This list is likely files to be * included in all releases. */Pkg.otherFiles = [    "sphdec1_copy_ti.h",  /* public header. */    "lib",                /* release the contents of all the "lib" directory. */    "readme.txt"          /* any release notes or docs can be added here. */];/* *  Optionally, you may also want to redistribute these source files, *  depending on your customer and delivery scenarios. */Pkg.otherFiles.$add("pjt/sphdec1_copy.pjt");    /* CCS project file */Pkg.otherFiles.$add("package.bld");             /* XDC build script */Pkg.otherFiles.$add("sphdec1_copy_ti_priv.h");  /* Internal interface header *//* Set this to false if you build with .pjts or other build tooling */xdcBuild = true;if (xdcBuild) {    /*     * Create an array containing the files to include in this     * package.  Note that the extension is added by XDC, so it need     * not be explicitly specified.     */    var SRCS = ["sphdec1_copy"];    for (var i = 0; i < Build.targets.length; i++) {        var targ = Build.targets[i];        print("building for target " + targ.name + " ...");        /*         * Add a debug and release library to this package, built from the         * files described in SRCS[].         */        Pkg.addLibrary("lib/sphdec1_copy", targ).addObjects(SRCS);        Pkg.addLibrary("lib/debug/sphdec1_copy", targ, {            profile: "debug"        }).addObjects(SRCS);    }}/* *  @(#) ti.xdais.dm.examples.sphdec1_copy; 1,0,0,19; 10-18-2006 19:12:13; /db/wtree/library/trees/dais-g07x/src/ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -