-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathneulang-compiler.cabal
More file actions
34 lines (32 loc) · 1.08 KB
/
neulang-compiler.cabal
File metadata and controls
34 lines (32 loc) · 1.08 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
-- Initial neulang-compiler.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: neulang-compiler
version: 0.1.0.0
synopsis: Compile programs to Neural Ram machines
-- description:
license: GPL-3
license-file: LICENSE
author: Rudy Bunel
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: src/NeulangLexer.x
cabal-version: >=1.10
executable neulang-compiler
hs-source-dirs: src
main-is: Main.hs
other-modules: NeulangLexer,
NeulangParser,
TorchNetWriter,
NeulangTransformerAST,
AsmWriter
-- other-extensions:
build-depends: base,
array,
shakespeare,
stringbuilder,
text
-- hs-source-dirs:
default-language: Haskell2010
Build-tools: alex, happy