The artifacts path stored for executable targets seem to have it's "sub path" repeated twice!
let activeProject = await api1?.getProject(workspaceFolder);
let conf activeProject?.codeModel?.configurations[0];
conf.projects.forEach(project => {
project.targets.forEach(t => {
console.log(t.artifacts[0];);
}
});
});
The artifacts printed in the above "pseudo" code is [binary_dir]/[target_subdir]/[target_subdir]/[artifact_name] instead of the expected [binary_dir]/[target_subdir]/[artifact_name]
Regards
Klaus
The artifacts path stored for executable targets seem to have it's "sub path" repeated twice!
The artifacts printed in the above "pseudo" code is
[binary_dir]/[target_subdir]/[target_subdir]/[artifact_name]instead of the expected[binary_dir]/[target_subdir]/[artifact_name]Regards
Klaus