Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"SHK.h" file not found

Sorry guys for noob question, need help. I'm try to use Sharekit - https://github.com/ShareKit/ShareKit.

I'm doing all steps from "Installing sharekit" wiki page, and I have no errors before I trying to import SHK.h. SHK.h visible in autocomplete, but I've got error. What could be missed?

like image 456
Artem Shmatkov Avatar asked May 28 '12 13:05

Artem Shmatkov


1 Answers

The answer in the link https://github.com/ShareKit/ShareKit/issues/393#issuecomment-6057929 is partially exact. You can have ShareKit folder at the same level of your project.

Just add in your project "Header Search Paths" (assuming that the directory where you put ShareKit is called "ShareKit" :

$(SRCROOT)/../ShareKit/Classes/**

And

$(SRCROOT)/../ShareKit/Submodules/**
like image 79
jptsetung Avatar answered Sep 21 '22 09:09

jptsetung