summaryrefslogtreecommitdiff
path: root/fsalis.cabal
blob: 792605e7cfe2ab403e2ec3b6d4f4c408dc01ffc9 (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
cabal-version: 3.4

name:       fsalis
version:    0.1.0.0
author:     Paul Oliver
maintainer: contact@pauloliver.dev
build-type: Simple

executable fsalis
    main-is: Main.hs
    hs-source-dirs: app
    other-modules:
        Arch.Dummy
        Config
        Core
        UI.Benchmark
    ghc-options:
        -O2
        -Wall
        -fllvm
        -funbox-strict-fields
        -rtsopts
        -threaded
    build-depends:
        base
      , bimap
      , monad-par
      , mtl
      , splitmix
      , vector
      , vector-th-unbox
    default-language: GHC2021