Skip to content

Commit 69c9680

Browse files
authored
Add clarity in the build log when builds are out of source (#3778)
1 parent 3472ca7 commit 69c9680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmakeProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1897,7 +1897,7 @@ export class CMakeProject {
18971897
*/
18981898
async runBuild(targets?: string[], showCommandOnly?: boolean, taskConsumer?: proc.OutputConsumer, isBuildCommand?: boolean): Promise<number> {
18991899
if (!showCommandOnly) {
1900-
log.info(localize('run.build', 'Building folder: {0}', this.folderName), (targets && targets.length > 0) ? targets.join(', ') : '');
1900+
log.info(localize('run.build', 'Building folder: {0}', await this.binaryDir || this.folderName), (targets && targets.length > 0) ? targets.join(', ') : '');
19011901
}
19021902
let drv: CMakeDriver | null;
19031903
if (showCommandOnly) {

0 commit comments

Comments
 (0)