aboutsummaryrefslogtreecommitdiffstats
path: root/achat.cabal
blob: cd86478b101698c8c7fa6a60b77ef0c4fd5343a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
cabal-version: 3.4
name:          achat
version:       0.1.0.0
license:       BSD-2-Clause
license-file:  LICENSE
maintainer:    aforemny@posteo.de
author:        Alexander Foremny
category:      Web
build-type:    Simple

executable frontend
    main-is:          Main.hs
    hs-source-dirs:   app
    default-language: Haskell2010
    build-depends:
        base,
        clay,
        ghcjs-base,
        haskell-halogen-core,
        kan-extensions,
        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