From e9d5c7a6c53cf3c05fa7b0a6c3b8eae9a6493c1b Mon Sep 17 00:00:00 2001 From: Ivan Shapovalov Date: Thu, 18 Jan 2024 00:59:43 +0100 Subject: [PATCH] CMake: add a top-level CMakeLists.txt to facilitate building both libraries at the same time --- 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..f80863e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.14.5) +project(prometheus-client-c) + +add_subdirectory(prom) +add_subdirectory(promhttp)