From c4067ba42095f9497e2bfee129c0a1a302fda7cf Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Mon, 29 Dec 2025 10:43:59 +0900 Subject: [PATCH] install cmake too --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..64f4bfd --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.25) +project( + mdebase +) + +include(GNUInstallDirs) +install( + DIRECTORY cmake/ + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/cmake/mde +)