Closed ferencIOS closed 1 year ago
If you want to pass flags like -F
to clang then you'll need to use the 'direct mode' that lets you pass flags to clang, described at the start of the doc you linked.
Something like (guessing):
--build-tool-arguments
--objc,./build/..../MyModule.h,--,-x,objective-c,
-isysroot,$(xcrun (whatever for your sdk)),
-F,(the directory with the framework),
-fmodules
I don't know if relative paths work here, might have to expand them.
Closing, answered/inactive.
I have a xcframework and I'm trying to extrapolate the documentation from the various headers.
In my
.jazzy.yaml
Reading the documentation:
I'm not understanding what to add and where to add it.
Thanks for your help.