aboutsummaryrefslogtreecommitdiffstats
path: root/xmonad-contrib.cabal
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xmonad-contrib.cabal9
1 files changed, 8 insertions, 1 deletions
diff --git a/xmonad-contrib.cabal b/xmonad-contrib.cabal
index d0e933f..38e06b9 100644
--- a/xmonad-contrib.cabal
+++ b/xmonad-contrib.cabal
@@ -20,13 +20,20 @@ cabal-version: >= 1.2
flag small_base
description: Choose the new smaller, split-up base package.
+flag use_xft
+ description: Use Xft to render text
+
library
if flag(small_base)
build-depends: base >= 3, containers, directory, process, random
else
build-depends: base < 3
- build-depends: mtl, unix, X11==1.3.0.20071111, xmonad==0.4, utf8-string, X11-xft
+ if flag(use_xft)
+ build-depends: X11-xft
+ ghc-options: -DXFT
+
+ build-depends: mtl, unix, X11==1.3.0.20071111, xmonad==0.4, utf8-string
ghc-options: -Wall -Werror
exposed-modules: Documentation
XMonad.Actions.Commands