From 8a16c6695e62de46c4f0cce22ff48276040bcfff Mon Sep 17 00:00:00 2001 From: mtgmonkey Date: Thu, 11 Dec 2025 18:15:32 +0100 Subject: basic functionality on Wayland and X11 --- Setup.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Setup.hs (limited to 'Setup.hs') diff --git a/Setup.hs b/Setup.hs new file mode 100644 index 0000000..938b9c1 --- /dev/null +++ b/Setup.hs @@ -0,0 +1,12 @@ +{-# LANGUAGE CPP #-} + +module Main (main) where + +import Distribution.Simple (defaultMain) +import System.Process (callCommand) + +main :: IO () +main = do + callCommand "./scripts/generate.sh" + defaultMain + callCommand "./scripts/delete-generated.sh" -- cgit v1.3.1