44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
|
|
name: backend
|
||
|
|
version: 0.1
|
||
|
|
cabal-version: >= 1.8
|
||
|
|
build-type: Simple
|
||
|
|
|
||
|
|
library
|
||
|
|
hs-source-dirs: src
|
||
|
|
if impl(ghcjs)
|
||
|
|
buildable: False
|
||
|
|
build-depends: base
|
||
|
|
, common
|
||
|
|
, frontend
|
||
|
|
, obelisk-backend
|
||
|
|
, obelisk-route
|
||
|
|
exposed-modules:
|
||
|
|
Backend
|
||
|
|
ghc-options: -Wall -O -fno-show-valid-hole-fits
|
||
|
|
-- unsafe code
|
||
|
|
-Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields
|
||
|
|
-- unneeded code
|
||
|
|
-Widentities -Wredundant-constraints
|
||
|
|
if impl(ghc >= 8.8)
|
||
|
|
ghc-options:
|
||
|
|
-Wmissing-deriving-strategies
|
||
|
|
|
||
|
|
executable backend
|
||
|
|
main-is: main.hs
|
||
|
|
hs-source-dirs: src-bin
|
||
|
|
ghc-options: -Wall -O -fno-show-valid-hole-fits -threaded
|
||
|
|
-- unsafe code
|
||
|
|
-Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields
|
||
|
|
-- unneeded code
|
||
|
|
-Widentities -Wredundant-constraints
|
||
|
|
if impl(ghc >= 8.8)
|
||
|
|
ghc-options:
|
||
|
|
-Wmissing-deriving-strategies
|
||
|
|
if impl(ghcjs)
|
||
|
|
buildable: False
|
||
|
|
build-depends: base
|
||
|
|
, backend
|
||
|
|
, common
|
||
|
|
, frontend
|
||
|
|
, obelisk-backend
|