SwiftGit2/libgit2/module.modulemap
PondokiOS (Muhammmad Muizzsuddin) b87b66f11a Change libgit2 to Clibgit2
2019-07-14 11:06:36 +07:00

32 lines
547 B
Plaintext

module Clibgit2 {
umbrella header "git2.h"
export *
module * { export * }
// 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"
export *
}
explicit module trace {
header "git2/trace.h"
export *
}
// Explicit module for the "sys" headers:
explicit module sys {
umbrella "git2/sys"
export *
module * { export * }
}
}