OLMKit: Attempt to make podspec work when the pod is downloaded from git
This commit is contained in:
parent
a9be04fa4b
commit
34998b52c7
1 changed files with 4 additions and 1 deletions
|
@ -38,8 +38,11 @@ Pod::Spec.new do |s|
|
||||||
# Use the same compiler options for C and C++ as olm/Makefile
|
# Use the same compiler options for C and C++ as olm/Makefile
|
||||||
|
|
||||||
s.compiler_flags = "-g -O3 -DOLMLIB_VERSION_MAJOR=#{MAJOR} -DOLMLIB_VERSION_MINOR=#{MINOR} -DOLMLIB_VERSION_PATCH=#{PATCH}"
|
s.compiler_flags = "-g -O3 -DOLMLIB_VERSION_MAJOR=#{MAJOR} -DOLMLIB_VERSION_MINOR=#{MINOR} -DOLMLIB_VERSION_PATCH=#{PATCH}"
|
||||||
|
|
||||||
|
# For headers search paths, manage first the normal installation. Then, use paths used
|
||||||
|
# when the pod is local
|
||||||
s.xcconfig = {
|
s.xcconfig = {
|
||||||
'USER_HEADER_SEARCH_PATHS' =>"#{File.join(File.dirname(__FILE__), 'include')} #{File.join(File.dirname(__FILE__), 'lib')}"
|
'USER_HEADER_SEARCH_PATHS' =>"${PODS_ROOT}/OLMKit/include ${PODS_ROOT}/OLMKit/lib #{File.join(File.dirname(__FILE__), 'include')} #{File.join(File.dirname(__FILE__), 'lib')}"
|
||||||
}
|
}
|
||||||
|
|
||||||
s.subspec 'olmc' do |olmc|
|
s.subspec 'olmc' do |olmc|
|
||||||
|
|
Loading…
Reference in a new issue