From 5ffec6ed7c40522c88a5bb62fe22e233b358244f Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 9 Aug 2024 14:52:03 -0600 Subject: initial commit --- Sources/CLVGL/include/module.modulemap | 5 +++++ Sources/CLVGL/include/shim.h | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 Sources/CLVGL/include/module.modulemap create mode 100644 Sources/CLVGL/include/shim.h (limited to 'Sources/CLVGL/include') diff --git a/Sources/CLVGL/include/module.modulemap b/Sources/CLVGL/include/module.modulemap new file mode 100644 index 0000000..9799d8a --- /dev/null +++ b/Sources/CLVGL/include/module.modulemap @@ -0,0 +1,5 @@ +module CLVGL { + umbrella header "shim.h" + link "lvgl" + export * +} diff --git a/Sources/CLVGL/include/shim.h b/Sources/CLVGL/include/shim.h new file mode 100644 index 0000000..49229a3 --- /dev/null +++ b/Sources/CLVGL/include/shim.h @@ -0,0 +1,6 @@ +#ifndef CLVGL_SHIM_H +#define CLVGL_SHIM_H + +#include "../lvgl/lvgl.h" + +#endif // CLVGL_SHIM_H -- cgit v1.2.3