aboutsummaryrefslogtreecommitdiff
path: root/tests/fliblib/fliblib.cabal
blob: 21c0d6139d6cf9a7e86ca20b4e5cdf021e6cdfe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name:                fliblib
version:             0
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  stack.yaml

library
  exposed-modules:     Lib
  hs-source-dirs:      lib
  build-depends:       base, filepath, directory
  default-language:    Haskell2010

foreign-library flib
  other-modules:       FLib
  build-depends:       base, fliblib
  hs-source-dirs:      .
  type:                native-shared
  if os(Windows)
    options:           standalone
  default-language:    Haskell2010