[pygccxml-development] building project with include subFolder
Brought to you by:
mbaas,
roman_yakovenko
From: Damien F. <dam...@mo...> - 2008-07-22 17:46:29
|
Hi , the library that I need to convert is organized sort like : src/algo /misc/string /number /utils /stream then inside the file the include are : #include "algo/sort.h" #include "misc/string/capitalize.h" #include "stream/save.h" reading the documentation I originally copied all the header into a single directory an include those into the main file to Bind. this work quite well but there is some problem . - I can't use the live files - there are some file with the same names . - etc I there a way to update my project so I could have one include file : #include "algo/sort.h" #include "misc/string/capitalize.h" #include "stream/save.h" #include "utils/io.h" then setup my search so it doesnt exlude the class registered in ./algo , ./mist , ./stream , ./utils ? I have try using the include path , but didnt manage to make it work . just want to make sure its possible . Thanks Damien |