From 392b212304f1209724c2d4431e5144376077a23e Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Sun, 23 Jul 2023 15:27:36 +0100 Subject: [PATCH] add spdlog to cmakelists --- 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 0000000..065185e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required (VERSION 3.0) +project(turbopilot VERSION 0.1.0) + + +add_subdirectory(extern/ggml) +add_subdirectory(extern/argparse) +add_subdirectory(extern/spdlog) +add_subdirectory(src) \ No newline at end of file