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

📄 package.bld

📁 达芬奇平台上面的codec server 搭建和音频处理的搭建
💻 BLD
字号:
/*
 *  ======== package.bld ========
 *
 */

/* all releases get the docs */
Pkg.otherFiles = [
    "docs",
    "link.xdt",
    "package.bld",
    ];


/*
 * Add a "production" release of the name of the package, but with
 * underscores replacing dots, and ending with ",production".  This release will
 * only have the actual codecs.
 */
if(arguments[0] == "prod")
{  
productionRelease = Pkg.addRelease(Pkg.name.replace(/\./g, '_') + ",production");
productionRelease.attrs.label = "production";
productionRelease.otherFiles = ["lib/dmjpge_tigem.l64P"];
Pkg.defaultRelease = productionRelease;
}

/*
 * Add a "evaluation" release of the name of the package, but with
 * underscores replacing dots, and ending with ",evaluation".  This release will
 * only have the watermarked codecs.
 */
if(arguments[0] == "eval")
{ 

evaluationRelease = Pkg.addRelease(Pkg.name.replace(/\./g, '_') + ",evaluation");
evaluationRelease.attrs.label = "evaluation";
evaluationRelease.otherFiles = ["lib/watermark"];
Pkg.defaultRelease = evaluationRelease;
}

⌨️ 快捷键说明

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