-
Notifications
You must be signed in to change notification settings - Fork 1
/
hsclox.cabal
50 lines (45 loc) · 1.57 KB
/
hsclox.cabal
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
cabal-version: 2.4
-- Initial package description 'hsclox.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: hsclox
version: 0.1.0.0
synopsis: compilers, interpreters
description: clox with Haskell-based front end
bug-reports: https://github.com/nineonine/hsclox/issues
license: BSD-3-Clause
license-file: LICENSE
author: Alex Dudarenko
maintainer: [email protected]
copyright: 2022 Alex Dudarenko
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
stability: experimental
source-repository head
type: git
location: https://github.com/nineonine/hsclox
foreign-library hsclox-ffi
type: native-shared
hs-source-dirs: src/hs
cc-options: -Wall
ghc-options: -Wall
default-language: Haskell2010
C-sources: src/hs/ffi/hscompiler.c
other-modules: Chunk
, Compiler
, Object
, OpCode
, Parser
, Scanner
, Token
, Utils
, Value
build-depends: base
, bytestring
, containers
, text
, transformers
, vector
default-extensions: DuplicateRecordFields
, RecordWildCards
, ScopedTypeVariables
, OverloadedStrings