This extension point allows to provide environment for qmake cmd-line tool execution.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
Implementation of QMake environment provider which is used to determinate environment for running QMake.
Priority of QMake environment provider. Less number means higher priority. Default priority is 0.
8.2
The following is an example of a qmakeEnvProvider contribution:
<p>
<pre>
<extension
point="org.eclipse.cdt.qt.core.qmakeEnvProvider"
id="example"
name="Example QMake Env Provider Extension">
<qmakeEnvProvider
class="com.example.internal.ExampleProvider">
<enablement>
<with variable="projectNatures">
<iterate operator="or">
<equals value="com.example.my-nature"/>
</iterate>
</with>
</enablement>
</qmakeEnvProvider>
</extension>
</pre>
</p>
The contributed class must implement <code>org.eclipse.cdt.qt.core.index.IQMakeEnvProvider</code>.
Copyright (c) 2013 QNX Software Systems and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html