Define `pod_target_xcconfig` for PrivateDatabase

Summary:
We don't strictly need this since all the other subspecs that use this set up the header search path for ReactCommon anyway but do it just for correctness.
Closes https://github.com/facebook/react-native/pull/16665

Differential Revision: D6241796

Pulled By: hramos

fbshipit-source-id: 19e6363e570d38f06ea970395d68b9cea7fd02ae
This commit is contained in:
James Ide 2017-11-04 12:37:19 -07:00 committed by Facebook Github Bot
parent 758111a706
commit 38b96cd7bb
1 changed files with 1 additions and 0 deletions

View File

@ -120,6 +120,7 @@ Pod::Spec.new do |s|
s.subspec "PrivateDatabase" do |ss|
ss.source_files = "ReactCommon/privatedata/*.{cpp,h}"
ss.private_header_files = "ReactCommon/privatedata/*.h"
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" }
end
s.subspec "cxxreact" do |ss|