1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Issue #167 - Core Build Makefile project build output folder.

* Issue Issue #167 was partly solved by PR #192 (commit 7911ac8a2b).
  This change fixes the problem that after closing and opening a
  Makefile project the wrong build output location was used for the
  default Run configuration.
  The cause was that StandardBuildConfiguration.buildContainer was
  null after opening the project.

Fixes #167
This commit is contained in:
Erwin Waterlander 2023-03-10 12:59:24 +00:00 committed by Jonah Graham
parent 5db69e7f16
commit 2b297c4355

View file

@ -80,6 +80,7 @@ public class StandardBuildConfiguration extends CBuildConfiguration {
public StandardBuildConfiguration(IBuildConfiguration config, String name, IToolChain toolChain, String launchMode) public StandardBuildConfiguration(IBuildConfiguration config, String name, IToolChain toolChain, String launchMode)
throws CoreException { throws CoreException {
super(config, name, toolChain, launchMode); super(config, name, toolChain, launchMode);
applyProperties();
setupEnvVars(); setupEnvVars();
} }