From d36594025727d32b6580f188a4c0476aaeecfd77 Mon Sep 17 00:00:00 2001 From: Daniil Rozanov Date: Thu, 14 Mar 2024 23:42:56 +0300 Subject: feat: initial ability to configure --- lua/cmake-explorer/constants.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/cmake-explorer/constants.lua (limited to 'lua/cmake-explorer/constants.lua') diff --git a/lua/cmake-explorer/constants.lua b/lua/cmake-explorer/constants.lua new file mode 100644 index 0000000..3a6fb1f --- /dev/null +++ b/lua/cmake-explorer/constants.lua @@ -0,0 +1,7 @@ +local Enum = require("overseer.enum") + +local M = {} + +M.TAG = Enum.new({ "CONFIGURE", "BUILD", "INSTALL", "TEST", "PACK" }) + +return M -- cgit v1.2.3