From e6f1771707a140b29f86915ed58920b826c8e915 Mon Sep 17 00:00:00 2001 From: MrJake222 Date: Thu, 20 Jul 2023 11:33:49 +0200 Subject: [PATCH] added basic support for cmake --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..6d71551d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(littlefs) + +target_sources(littlefs PUBLIC + lfs.c + lfs_util.c) + +target_include_directories(littlefs PUBLIC + .) \ No newline at end of file