Nike-Inc / Willow

Willow is a powerful, yet lightweight logging library written in Swift.
MIT License
1.35k stars 80 forks source link

Moved Headers build step above Compile Sources for all targets #25

Closed deemadden closed 7 years ago

deemadden commented 7 years ago

We're seeing a problem in our project where builds will intermittently fail when compiling LoggerConfiguration with the error:

umbrella header 'Willow.h' not found
umbrella header "Willow.h"
                            ^
<unknown>:0: error: "could not build Objective-C module 'Willow'

Did some digging and found that some folks have found this can be fixed by moving the "Headers" build step up above "Compile Sources" in Build Phases fixes:

http://stackoverflow.com/a/35318277/719572

This is a small change to the project file that does just that.

deemadden commented 7 years ago

We're finding out now that this isn't solving our problem, so closing it out.