diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-10 01:47:04 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-10 01:47:04 +0100 |
commit | 9e137a9c1aeb3eb9c14a1c79f8f80954bfa914a4 (patch) | |
tree | 9b9beff14d6b53362fe25da59ff6c4d2daa1b2c1 | |
parent | 099cc6120479c350270becc6bb37afdcff02f128 (diff) | |
download | xmonad-9e137a9c1aeb3eb9c14a1c79f8f80954bfa914a4.tar.gz xmonad-9e137a9c1aeb3eb9c14a1c79f8f80954bfa914a4.tar.xz xmonad-9e137a9c1aeb3eb9c14a1c79f8f80954bfa914a4.zip |
Add 'testing' mode, this should reduce 'darcs check' time significantly
darcs-hash:20071210004704-a5988-8f20ae926a5fc176fd29df6822e90921256e3308.gz
Diffstat (limited to '')
-rw-r--r-- | xmonad.cabal | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmonad.cabal b/xmonad.cabal index 0ad5f9e..1cb467a 100644 --- a/xmonad.cabal +++ b/xmonad.cabal @@ -25,6 +25,10 @@ cabal-version: >= 1.2 flag small_base description: Choose the new smaller, split-up base package. +flag testing + description: Testing mode, only build minimal components + default: False + library exposed-modules: XMonad XMonad.Main @@ -44,6 +48,8 @@ library ghc-options: -funbox-strict-fields -Wall -Werror -optl-Wl,-s ghc-prof-options: -prof -auto-all extensions: CPP + if flag(testing) + buildable: False executable xmonad main-is: Main.hs |