1
的CocoaPods總是產生含有沒有辦法在CocoaPods中禁用默認的pch文件?
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
構建庫中的默認的PCH文件。我發現prefix_header_file選項將文件附加到默認值。
我想在CocoaPods內部和外部構建庫並避免pch文件。
有沒有辦法在CocoaPods中完全禁用pch文件?
參見HTTPS:/ /github.com/CocoaPods/CocoaPods/pull/7044 –