Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is $(inherited) in Xcode's search path settings?

Tags:

xcode

What is the $(inherited) search path setting?

I've modified the header and library search path settings regarding OpenSSL for iPad and this issue along with the recursive option for given path was the main culprit.

When I rearranged my search paths to first look into directories and then into $(inherited), the iPad builds were working.

like image 495
Martin Berger Avatar asked Mar 11 '13 16:03

Martin Berger


1 Answers

If you go to Target Build Settings, and switch to Level view

Alt text

You can see the flow of inherited from right to left

Resolved <- Target <- xcconfig <- Project <- iOS Default 

So in inherited in Target means that Target inherits settings from xcconfig and Project

like image 120
onmyway133 Avatar answered Sep 24 '22 08:09

onmyway133