Any tips on how to get started ? Where should I place my modulemap file ?
I would like to add the target system library in my package to avoid exposing an extra wrapper repository. It seems exactly what this features is about.
Hi, I tried without umbrella and the extra header files. I specified all header files and .so libraries in .modulemap file. It worked.
But is it guaranteed to be correct?
module.modulemap:
module clib {
header "/usr/include/stdio.h"
header "../../../hello/hello.h"
link "c"
link "hello"
}