Added simple swiftpm package file with module map and empty C file to trick the compiler to build the empty C target.

This commit is contained in:
Serhii Mumriak
2020-09-05 20:39:12 -07:00
parent e34601f578
commit 65b0b461ab
3 changed files with 59 additions and 0 deletions

14
include/module.modulemap Normal file
View File

@@ -0,0 +1,14 @@
module cglm {
header "cglm/cglm.h"
header "cglm/struct.h"
export *
}
module cglmc {
header "cglm/cglm.h"
header "cglm/struct.h"
header "cglm/call.h"
export *
}