Signed-off-by: chen-zhongwei050 <chenzhongwei050@chinasoftinc.com>
This commit is contained in:
chen-zhongwei050 2024-07-30 11:43:02 +08:00
parent ba0f9eb78b
commit d97a7464c9

View File

@ -104,7 +104,7 @@ function genDriverFramework(driverName, out = '') {
let frameworkJsonPath = path.join(__dirname, './templete/framework.json');
let frameworkJson = getJsonCfg(frameworkJsonPath);
let frameworkPath = pathJoin(out, 'hdf');
let frameworkPath = pathJoin(out, driverName + 'hdf');
let namespaceName = driverName.substring(0,1).toUpperCase() + driverName.substring(1, driverName.length);
let idlFileName = 'I' + namespaceName + 'Interface';