timpokorny / cpptask

Simple Ant tasks for compiling C++ code via the command line with Visual Studio or GCC
4 stars 4 forks source link

README is outdated #3

Open stepthom opened 11 years ago

stepthom commented 11 years ago

The README says that the following line should appear in the build.xml file:

<taskdef name="cpptask" classname="com.lbf.cpptask.CppTask"/>

However, there was no such class in the cpptask.jar file. I had to use:

<taskdef name="cpptask" classname="org.portico.ant.tasks.cpptask.CppTask"/>

Also, the example in the README includes an objdir attribute of the cpptask element. However, I recieved the following error from Ant:

/media/sdb1/checkouts/hive/targets/minidb/build.xml:38: cpptask doesn't support the "objdir" attribute
timpokorny commented 11 years ago

G'day Stephen,

Thanks for pointing these out. I shall get the README updated!