mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Add missing since tag.
Change-Id: Iea0cc7fd4706b1cb20bcf4a98d16cf81c70c313c
This commit is contained in:
parent
c14f675a8e
commit
f922bfacc6
1 changed files with 4 additions and 2 deletions
|
@ -41,8 +41,6 @@ import org.eclipse.cdt.core.model.IBinaryContainer;
|
||||||
import org.eclipse.cdt.core.model.ICElement;
|
import org.eclipse.cdt.core.model.ICElement;
|
||||||
import org.eclipse.cdt.core.model.ICModelMarker;
|
import org.eclipse.cdt.core.model.ICModelMarker;
|
||||||
import org.eclipse.cdt.core.model.ICProject;
|
import org.eclipse.cdt.core.model.ICProject;
|
||||||
import org.eclipse.cdt.core.model.IOutputEntry;
|
|
||||||
import org.eclipse.cdt.core.model.IPathEntry;
|
|
||||||
import org.eclipse.cdt.core.model.ITranslationUnit;
|
import org.eclipse.cdt.core.model.ITranslationUnit;
|
||||||
import org.eclipse.cdt.core.parser.ExtendedScannerInfo;
|
import org.eclipse.cdt.core.parser.ExtendedScannerInfo;
|
||||||
import org.eclipse.cdt.core.parser.IExtendedScannerInfo;
|
import org.eclipse.cdt.core.parser.IExtendedScannerInfo;
|
||||||
|
@ -191,10 +189,14 @@ public abstract class CBuildConfiguration extends PlatformObject
|
||||||
return Paths.get(getBuildDirectoryURI());
|
return Paths.get(getBuildDirectoryURI());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void setBuildEnvironment(Map<String, String> env) {
|
public void setBuildEnvironment(Map<String, String> env) {
|
||||||
CCorePlugin.getDefault().getBuildEnvironmentManager().setEnvironment(env, config, true);
|
CCorePlugin.getDefault().getBuildEnvironmentManager().setEnvironment(env, config, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 6.1
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public IBinary[] getBuildOutput() throws CoreException {
|
public IBinary[] getBuildOutput() throws CoreException {
|
||||||
ICProject cproject = CoreModel.getDefault().create(config.getProject());
|
ICProject cproject = CoreModel.getDefault().create(config.getProject());
|
||||||
|
|
Loading…
Add table
Reference in a new issue