diff options
Diffstat (limited to 'achat.cabal')
-rw-r--r-- | achat.cabal | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/achat.cabal b/achat.cabal index 448a896..cd86478 100644 --- a/achat.cabal +++ b/achat.cabal @@ -8,7 +8,7 @@ author: Alexander Foremny category: Web build-type: Simple -executable achat +executable frontend main-is: Main.hs hs-source-dirs: app default-language: Haskell2010 @@ -21,3 +21,17 @@ executable achat protolude, row-types, unliftio + + if !arch(javascript) + buildable: False + +executable backend + main-is: acms.hs + hs-source-dirs: . + default-language: Haskell2010 + build-depends: + base, + acms + + if arch(javascript) + buildable: False |