SwiftGit2/libgit2/module.modulemap
Matt Rubin d4e2413e50 Update the libgit2 modulemap to avoid "does not include header" warnings
Also, use symlinks to enable cleaner path strings in the modulemap.
2016-12-13 05:15:47 -05:00

22 lines
452 B
Plaintext

module libgit2 {
umbrella header "git2.h"
// Exclude headers intended only for Microsoft compilers
exclude header "git2/inttypes.h"
exclude header "git2/stdint.h"
// Explicit modules for headers not included in the umbrella header:
explicit module cred_helpers {
header "git2/cred_helpers.h"
}
explicit module trace {
header "git2/trace.h"
}
// Explicit module for the "sys" headers:
explicit module sys {
umbrella "git2/sys"
}
}