cordova-node-xcode
cordova-node-xcode copied to clipboard
pbxProject.prototype.addToHeaderSearchPaths #13 issue, still appeared.
if (!buildSettings['HEADER_SEARCH_PATHS']) {
buildSettings['HEADER_SEARCH_PATHS'] = [INHERITED];
}
This can be changed like this?
if (!buildSettings['HEADER_SEARCH_PATHS']
|| buildSettings['HEADER_SEARCH_PATHS'] === INHERITED) {
buildSettings['HEADER_SEARCH_PATHS'] = [INHERITED];
}
Library search path is already implemented like it. but header search path is not.
Contribution of PR with test suite would be much appreciated. Maintainers have been completely overloaded. My apologies.