From 15a1d631dabba3660d53fa306e81604a39e57972 Mon Sep 17 00:00:00 2001 From: Epagris Date: Tue, 9 Apr 2024 11:54:09 +0200 Subject: [PATCH] basic CMake integration added --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..91c2d25 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +target_sources( + ${CMAKE_PROJECT_NAME} + PUBLIC + embformat.c +)