I have a static library iOS project ProjectCore
, that I want to include in the project MyProject
.
In the library project I set:
PUBLIC_HEADERS_FOLDER_PATH = $(TARGET_NAME)
So I end up with the following structure
libProjectCore.a
ProjectCore (Folder)
+- ProjectCore.h
+- ProjectCoreUtil.h
In the directory /.../DerivedData/MyProject-xyzabcd/Products/Release-iphoneos/
Now I setup MyProject
ProjectCore
as a git submodule next to MyProject.xcodeproj
ProjectCore.xcodeproj
to XcodelibProjectCore.a
$(BUILT_PRODUCTS_DIR)
which should point to the folder above.Curiously neither of the approaches work:
#import "ProjectCore.h" // With the (Recursive Flag set for the Headers)
#import <ProjectCore/ProjectCore.h> // The way RestKit does it
I suggest using ${TARGET_BUILD_DIR}/ProjectCore
in User Header Search Paths
- it works for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With