I am working on an xcode project that requires me to use ITK (a c++ library), I have went through with the installation of ITK, by doing
ccmake InsightToolkit-4.13.1 and then configuring and generating the files, then runing
make make install but I do not know how to import the library into the xcode project, where I get the following error every time I try building it:
'itkImage.h' image file not found
I would like to know how could I import it and share it with other people on different computers.

CMaketo generate your project for your application.ITKto your compiler settings. Also you will have to add libraries to link to your linker settings. I can't tell you how to do that in xcode.