I an definitely a newbie nant user. I hope this question is constructed intelligently. 
:) I am having some problems compiling a VCC project (.NET 1.1 framework). Here is 
some sample settings in the .build file:

...

    <property name="cl.define" 
value="WIN32;NDEBUG;_WINDOWS;_USRDLL;_WINDLL;_UNICODE;UNICODE" />
    <property name="cl.warn" value="3" />
    <property name="cl.inc" value="" />
    <property name="link.dep" value="" />
    <property name="link.output" value="Release/Personal.dll" />
    <property name="link.libdir" value="" />

...

    <cl outputdir="Release" pchfile="Personal"
        options="/O2 /FD /EHsc /MT /GS /c /Wp64 /Zi">
      <sources>
        <includes name="Personal.cpp" />
      </sources>
      <headers>
        <includes name="Personal.h" />
      </headers>
    </cl>

...

The output I get when running nant on this build file is:

[cl] cl failed to start.
 The system cannot find the file specified

Is the cl.exe file not being found? Do I need to set some Environment variables? 
(INCLUDE, LIB, PATH, TMP, VS71COMNTOOLS are all already set)

Any input/suggestions would be much appreciated.

Thanks!

Matthew 



-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to