Re: [swift-users] .apinotesc file placement?

2017-11-29 Thread Roderick Mann via swift-users
> On Nov 29, 2017, at 16:23 , Jonathan Prescott wrote: > > As a general question since I’m just getting into Swift frameworks, could the > framework architecture not be right? When I build a > non-Swift(C/C++/Obj-C/Obj-C++/other language/etc) based framework using

Re: [swift-users] .apinotesc file placement?

2017-11-29 Thread Rick Mann via swift-users
Oops, slight correction. I finally found I wasn't including the module.modulemap correctly. It belongs in Modules/module.modulemap. With that, Xcode sees the lgscolibri module. However enum renaming (the problem I was trying to solve initially) is still oddly broken. This pair of compilation

Re: [swift-users] .apinotesc file placement?

2017-11-02 Thread Rick Mann via swift-users
> On Nov 1, 2017, at 14:27 , Jordan Rose wrote: > > Yep, you can! In fact, you don't even need to compile it. You can just put > the apinotes file itself into the Headers/ directory and it will work, as > long as > > - the file has the same name as the framework, i.e.

Re: [swift-users] .apinotesc file placement?

2017-11-01 Thread Jordan Rose via swift-users
Yep, you can! In fact, you don't even need to compile it. You can just put the apinotes file itself into the Headers/ directory and it will work, as long as - the file has the same name as the framework, i.e. "MyKit.apinotes" - the framework has a proper module map (I have a task on me to write