From 041a588778ab0c4b828125afe494e0d3f13df16a Mon Sep 17 00:00:00 2001 From: Ryan Nickel Date: Mon, 14 Nov 2016 16:50:37 -0500 Subject: [PATCH] Add space for header search paths We were having a problem with xcode throwing errors when trying to build due to file missing. Added the ${PODS_ROOT}/Headers/Public/glm/** to rectify that issue. --- VideoCore.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VideoCore.podspec b/VideoCore.podspec index 2f47d3c7..7855d13f 100644 --- a/VideoCore.podspec +++ b/VideoCore.podspec @@ -35,7 +35,8 @@ Pod::Spec.new do |s| s.dependency 'glm', '~> 0.9.4.6' s.dependency 'UriParser-cpp', '~> 0.1.3' - s.xcconfig = { "HEADER_SEARCH_PATHS" => "${PODS_ROOT}/boost" } + s.xcconfig = { "HEADER_SEARCH_PATHS" => '"${PODS_ROOT}/boost"' + " " + + '"${PODS_ROOT}/Headers/Public/glm/**"' } s.ios.deployment_target = '5.0'