aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2014-05-02 19:51:59 +0200
committerAdam Vogt <vogt.adam@gmail.com>2014-05-02 19:51:59 +0200
commit9ac3bfc633c960f5b6aa415e70007b02fcf644dd (patch)
tree2b1d7050e936b99b6509e63b0adfb78e65dd3fd6
parentf945ea48f33119f605cb728a00b5498425fb6293 (diff)
downloadxmonad-9ac3bfc633c960f5b6aa415e70007b02fcf644dd.tar.gz
xmonad-9ac3bfc633c960f5b6aa415e70007b02fcf644dd.tar.xz
xmonad-9ac3bfc633c960f5b6aa415e70007b02fcf644dd.zip
move library part to src/
Ignore-this: 39633e17915844643f12a3dd25288e81 darcs-hash:20140502175159-1499c-fa8e1239e9c2a843e2272e7173374245682a1314.gz
-rw-r--r--src/XMonad.hs (renamed from XMonad.hs)0
-rw-r--r--src/XMonad/Config.hs (renamed from XMonad/Config.hs)0
-rw-r--r--src/XMonad/Core.hs (renamed from XMonad/Core.hs)0
-rw-r--r--src/XMonad/Layout.hs (renamed from XMonad/Layout.hs)0
-rw-r--r--src/XMonad/Main.hsc (renamed from XMonad/Main.hsc)0
-rw-r--r--src/XMonad/ManageHook.hs (renamed from XMonad/ManageHook.hs)0
-rw-r--r--src/XMonad/Operations.hs (renamed from XMonad/Operations.hs)0
-rw-r--r--src/XMonad/StackSet.hs (renamed from XMonad/StackSet.hs)0
-rw-r--r--xmonad.cabal23
9 files changed, 9 insertions, 14 deletions
diff --git a/XMonad.hs b/src/XMonad.hs
index c1fc5dc..c1fc5dc 100644
--- a/XMonad.hs
+++ b/src/XMonad.hs
diff --git a/XMonad/Config.hs b/src/XMonad/Config.hs
index 9aaab8f..9aaab8f 100644
--- a/XMonad/Config.hs
+++ b/src/XMonad/Config.hs
diff --git a/XMonad/Core.hs b/src/XMonad/Core.hs
index cef4f81..cef4f81 100644
--- a/XMonad/Core.hs
+++ b/src/XMonad/Core.hs
diff --git a/XMonad/Layout.hs b/src/XMonad/Layout.hs
index 8eff488..8eff488 100644
--- a/XMonad/Layout.hs
+++ b/src/XMonad/Layout.hs
diff --git a/XMonad/Main.hsc b/src/XMonad/Main.hsc
index 5d59042..5d59042 100644
--- a/XMonad/Main.hsc
+++ b/src/XMonad/Main.hsc
diff --git a/XMonad/ManageHook.hs b/src/XMonad/ManageHook.hs
index aa5ae32..aa5ae32 100644
--- a/XMonad/ManageHook.hs
+++ b/src/XMonad/ManageHook.hs
diff --git a/XMonad/Operations.hs b/src/XMonad/Operations.hs
index 41fbed0..41fbed0 100644
--- a/XMonad/Operations.hs
+++ b/src/XMonad/Operations.hs
diff --git a/XMonad/StackSet.hs b/src/XMonad/StackSet.hs
index a7e9f6b..a7e9f6b 100644
--- a/XMonad/StackSet.hs
+++ b/src/XMonad/StackSet.hs
diff --git a/xmonad.cabal b/xmonad.cabal
index 627361c..5b7dc7a 100644
--- a/xmonad.cabal
+++ b/xmonad.cabal
@@ -20,7 +20,7 @@ maintainer: xmonad@haskell.org
extra-source-files: README TODO CONFIG STYLE tests/loc.hs tests/Properties.hs
man/xmonad.1.markdown man/xmonad.1 man/xmonad.1.html
util/GenerateManpage.hs
-cabal-version: >= 1.6
+cabal-version: >= 1.8
bug-reports: http://code.google.com/p/xmonad/issues/list
build-type: Simple
@@ -44,6 +44,7 @@ flag testing
default: False
library
+ hs-source-dirs: src
exposed-modules: XMonad
XMonad.Main
XMonad.Core
@@ -74,19 +75,13 @@ library
buildable: False
executable xmonad
- main-is: Main.hs
- other-modules: XMonad
- XMonad.Main
- XMonad.Core
- XMonad.Config
- XMonad.Layout
- XMonad.ManageHook
- XMonad.Operations
- XMonad.StackSet
-
- if true
- ghc-options: -funbox-strict-fields -Wall
-
+ main-is: Main.hs
+ build-depends: base,
+ X11,
+ unix,
+ mtl,
+ xmonad
+ ghc-options: -Wall
if impl(ghc >= 6.12.1)
ghc-options: -fno-warn-unused-do-bind