Fix RSocket podspec including .txt and .md files for compilation (#1438)

Summary:
## Changelog

Pull Request resolved: https://github.com/facebook/flipper/pull/1438

Reviewed By: mweststrate

Differential Revision: D22921702

Pulled By: passy

fbshipit-source-id: c61761e2c1ec783573c96ddf6d68155a4390f7cd
This commit is contained in:
Daniel Schlaug
2020-08-04 06:35:16 -07:00
committed by Facebook GitHub Bot
parent b0159c10ee
commit 6083534025

View File

@@ -13,15 +13,15 @@ Pod::Spec.new do |spec|
spec.source = { :git => 'https://github.com/rsocket/rsocket-cpp.git', :branch => "master"} spec.source = { :git => 'https://github.com/rsocket/rsocket-cpp.git', :branch => "master"}
spec.module_name = 'RSocket' spec.module_name = 'RSocket'
spec.static_framework = 'true' spec.static_framework = 'true'
spec.source_files = 'rsocket/benchmarks/*', spec.source_files = 'rsocket/benchmarks/*.{h,cpp,m,mm}',
'rsocket/framing/*', 'rsocket/framing/*.{h,cpp,m,mm}',
'rsocket/internal/*', 'rsocket/internal/*.{h,cpp,m,mm}',
'rsocket/statemachine/*', 'rsocket/statemachine/*.{h,cpp,m,mm}',
'rsocket/transports/*', 'rsocket/transports/*.{h,cpp,m,mm}',
'rsocket/transports/**/*', 'rsocket/transports/**/*.{h,cpp,m,mm}',
'yarpl/observable/*', 'yarpl/observable/*.{h,cpp,m,mm}',
'yarpl/flowable/*', 'yarpl/flowable/*.{h,cpp,m,mm}',
'rsocket/*' 'rsocket/*.{h,cpp,m,mm}'
spec.libraries = "stdc++" spec.libraries = "stdc++"
spec.compiler_flags = '-std=c++1y' spec.compiler_flags = '-std=c++1y'