in my project, I want to refer to another xcconfig file located in the InDesign SDK. Since this SDK can be installed in different places, depending on the machine, I prefer to declare an environment variable to define it.
The Nest step obviously should use a variable (aptly named ID_CS5_SDK_DIR ) in my include xcconfig directive.
Unfortunately, when I try simple
// InDesign sdk project build settings (based on common build settings) #include "$(ID_CS5_SDK_ROOT)/build/mac/prj/_shared_build_settings/common.xcconfig"
Xcode throws me
[WARN]AutocatPlugin.xcconfig line 7: Unable to find included file "$(ID_CS5_SDK_ROOT)/build/mac/prj/_shared_build_settings/common.xcconfig"
How can I make it work?
source share