aldebaran / qibuild

qiBuild: the meta build framework
http://doc.aldebaran.com/qibuild/index.html
BSD 3-Clause "New" or "Revised" License
66 stars 43 forks source link

qiproject.xml: attribute name of the depends tag does not seem to work #15

Closed AxelVoitier closed 12 years ago

AxelVoitier commented 12 years ago

Hi there,

It seems if I do this:

<depends buildtime="true" name="blabla" />

The qibuild configure command fail to find the CMake configuration files of the libs declared in the project blabla. Instead, I have to do this:

<depends buildtime="true" names="blabla" />

That is, using "names" instead of "name", even though I have only one dependency.

Using qibuild 1.12.3.

(By the way, the doc http://developer.aldebaran-robotics.com/doc/1-12/qibuild/ref/cfg/qiproject_xml_syntax.html is incomplete I guess, as it is mentioning the old manifest files.)

Lexa

dmerejkowsky commented 12 years ago

You're right.

I'll update documentation.

The template created by qibuild create is also invalid, sorry about that.

dmerejkowsky commented 12 years ago

Fixed in 4e14828bc87ce01d0d06fe4c33c5f14dfe0cdc07

Thanks for reporting