Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2017-11-09 19:13:35 +0000
committerDoug Schaefer2017-11-10 01:35:17 +0000
commit45019ea7805777774f71d395e077fe36068d401f (patch)
tree2f729e5005a6a26f0219c6e54699638a8758ebd2 /build/org.eclipse.cdt.make.ui/plugin.xml
parent18f76e8313432b297765c23b95f1d5033789195e (diff)
downloadorg.eclipse.cdt-45019ea7805777774f71d395e077fe36068d401f.tar.gz
org.eclipse.cdt-45019ea7805777774f71d395e077fe36068d401f.tar.xz
org.eclipse.cdt-45019ea7805777774f71d395e077fe36068d401f.zip
Add settings to Makefile build configs to build at project root.
Often Makefile projects are intended to be built from the project root directory, such as ESP32 IDF projects. This adds a setting to control that. Change-Id: I151ebf60a7609461d24e192a9d6418fccb737055
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/plugin.xml')
-rw-r--r--build/org.eclipse.cdt.make.ui/plugin.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.make.ui/plugin.xml b/build/org.eclipse.cdt.make.ui/plugin.xml
index 430a7a35fd2..e4c1f7bbd09 100644
--- a/build/org.eclipse.cdt.make.ui/plugin.xml
+++ b/build/org.eclipse.cdt.make.ui/plugin.xml
@@ -651,4 +651,11 @@
label="Make">
</tag>
</extension>
+ <extension
+ point="org.eclipse.cdt.launch.coreBuildTab">
+ <provider
+ nature="org.eclipse.cdt.make.core.makeNature"
+ tabClass="org.eclipse.cdt.make.internal.ui.MakeBuildSettingsTab">
+ </provider>
+ </extension>
</plugin>

Back to the top