I was wondering if there is a way to set the PATH variable at the beginning of the build dynamically?  I tried to use the <PATH> type before anything runs:

 

<property name="programfiles.dir" value="${environment::get-folder-path('ProgramFiles')}" />

<property name="framework.identifer" value="${framework::get-runtime-framework()}" />

<property name="framework.dir" value="${framework::get-framework-directory(framework.identifer)}" />

 

<path id="path">

      <pathelement dir="${vsnet.dir}\Vc7\bin" />

      <pathelement dir="${vsnet.dir}\SDK\v1.1\bin" />

      <pathelement dir="${framework.dir}" />

</path>

 

I need to set this b/c <cl> and <link> fail if they are not found in the path.  Is there a way to do this?

 

Thanks.

-Brandon

 

Reply via email to