You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new mac application TestProject in objective c
Add a Podfile with the following, then run pod install:
def macos_version; '10.14' end
platform :osx, macos_version
use_frameworks!
inhibit_all_warnings!
workspace 'TestProject.xcworkspace'
target 'TestProject' do
project 'TestProject.xcodeproj'
pod 'CocoaHTTPServer', '2.3.0'
end
Open the generated TestProject.xcworkspace
Add #import <CocoaHTTPServer/HTTPServer.h> to any objc file, such as AppDelegate.m
Observe it fails to build because of import order or something similar in the generated CocoaHTTPServer-umbrella.h
CocoaHTTPServer 2.2.1 works just fine though.
The text was updated successfully, but these errors were encountered:
Repro:
pod install
:TestProject.xcworkspace
#import <CocoaHTTPServer/HTTPServer.h>
to any objc file, such as AppDelegate.mCocoaHTTPServer-umbrella.h
CocoaHTTPServer 2.2.1 works just fine though.
The text was updated successfully, but these errors were encountered: