In “codec engine algorithm creator userguide” 2.2.3 package.bld File section ,it said that through
Pkg.attrs.exportAll = true;
var SRCS = ["imgenc_copy"];
Pkg.addLibrary("lib/viddec_copy", targ).addObjects(SRCS);
you can release a package that include the file you want to. after we input the “gmake release" command ,a file named :ti_sdo_ce_examples_codecs_imgenc_copy.tar was generated .open it and we could see that all the files in current path were included :
but I don't want to release the source file :for example "imgenc_copy.c" and "imgenc_copy_ti_priv.h"; and I also don't want this package could be "rebuildable".
I had tried to set
Pkg.attrs.exportAll = false;
var SRCS = ["imgenc_copy_ti.h"]; // only "imgenc_copy_ti.h" should be released.
but the generated file ti_sdo_ce_examples_codecs_imgenc_copy.tar was like this :
may be this was the ultimate package ,but why the head file is not included? or should we manually add the needed head files in this package ?