Re: [CMake] include header files from external library

2008-10-03 Thread Sylvain Jaume
Hi Leila, Have you tried to convert your ITK mesh to VTK and use vtkLoopSubdivisionFilter or vtkButterflySubdivisionFilter ? Regards, Sylvain On Fri, Oct 3, 2008 at 2:03 PM, Leila Baghdadi <[EMAIL PROTECTED]>wrote: > Hi guys, > > I am wondering if someone can give me a quick hint here. > > I am

Re: [CMake] include header files from external library

2008-10-03 Thread Andy Lego
Hi Leila, When doing the search for the header files, specify the relative path within the tree and not the actual header file. For example, find_path(OPEN_MESH_INCLUDES NAMES OpenMesh/balh/balh/something.h ) instead of find_path(OPEN_MESH_INCLUDES NAMES something.h) Then OPEN_MESH_INCLUDES wi

[CMake] include header files from external library

2008-10-03 Thread Leila Baghdadi
Hi guys, I am wondering if someone can give me a quick hint here. I am trying to link an external library (openmesh.org) to itk so I can use their mesh subdivision algorithm on my meshes. I have downloaded and built openmesh successfully and I have tried to create the correct cmake files. howeve