How to handle OS Dependant manifest.xml ?
Hi all,
I am working with a double gnulinux/xenomai system. The switch from one to the other is done like Orocos does with the "OROCOS_TARGET" env variable. But When I have a package depending of another, I need to define 2 different manifest, for exemple :
<export>
<cpp cflags="-L${prefix}/lib -larp_core-gnulinux"/>
</export>
or
<export>
<cpp cflags="-L${prefix}/lib -larp_core-xenomai"/>
</export>
How could I handle this ?