Reputation: 34798
What would correct "User Header Search Path" be for this scenario (use of 3rd party library):
Notes:
Query Points - would be good if in the answer you could clarify the following items (which I'm a bit confused about)
thanks
Upvotes: 0
Views: 1990
Reputation: 5505
For Xcode 4.x, you can check the value of $(BUILT_PRODUCTS_DIR)
easily by adding a custom build phase and having it add the environments to the build log.
Now, when you check the build log, the environment variables will all be there (if you expand the build log stage's detail).
Upvotes: 1
Reputation: 34798
After noting that the build process directories are different now in XCode 4, and with help from the three20 doco at http://three20.info/article/2011-03-10-Xcode4-Support I have noted that what has worked is as follows. Hence I assume this approach would work for other libraries.
"$(BUILT_PRODUCTS_DIR)/../three20"
"$(BUILT_PRODUCTS_DIR)/../../three20"
Feel free to comment / supply a better answer if there is one.
Upvotes: 0