-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaskript-tfd.cabal
More file actions
53 lines (49 loc) · 1.47 KB
/
haskript-tfd.cabal
File metadata and controls
53 lines (49 loc) · 1.47 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabal-version: 3.14
name: haskript-tfd
version: 0.1.0.0
synopsis: A wrapper around an updated TinyFileDialogs.
-- description:
homepage: https://github.com/haskript/haskript-tfd/
license: MIT
license-file: LICENSE
author: Liam Zhu
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
Haskript.GraphicsUI.TFD.IOActions
Haskript.GraphicsUI.TFD.IOActions.Beep
Haskript.GraphicsUI.TFD.LibraryQueries
Haskript.GraphicsUI.TFD.Types
other-modules:
Haskript.GraphicsUI.TFD.Internal.FFI
Haskript.GraphicsUI.TFD.Internal.GlobalMutex
c-sources:
cbits/tinyfiledialogs.c
include-dirs:
cbits/
cc-options:
-Wno-incompatible-pointer-types-discards-qualifiers
-- other-extensions:
build-depends: base ^>=4.21.0.0
hs-source-dirs: src
default-language: GHC2024
test-suite haskript-tfd-test
import: warnings
ghc-options: -threaded -with-rtsopts=-N4
default-language: GHC2024
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.21.0.0,
haskript-tfd