78 lines
1.9 KiB
Plaintext
78 lines
1.9 KiB
Plaintext
cabal-version: 3.4
|
|
name: elna
|
|
version: 0.1.0.0
|
|
synopsis:
|
|
Elna programming language compiles simple mathematical operations to RISC-V code
|
|
|
|
-- description:
|
|
license: MPL-2.0
|
|
license-file: LICENSE
|
|
author: Eugen Wissner
|
|
maintainer: belka@caraus.de
|
|
-- copyright:
|
|
category: Language
|
|
build-type: Simple
|
|
extra-doc-files: TODO README
|
|
|
|
common warnings
|
|
build-depends:
|
|
base >=4.7 && <5,
|
|
megaparsec ^>= 9.6,
|
|
text ^>= 2.0
|
|
ghc-options: -Wall
|
|
default-extensions:
|
|
DataKinds,
|
|
ExplicitForAll,
|
|
LambdaCase,
|
|
OverloadedStrings,
|
|
RecordWildCards
|
|
default-language: GHC2021
|
|
|
|
library elna-internal
|
|
import: warnings
|
|
exposed-modules:
|
|
Language.Elna.AST
|
|
Language.Elna.CodeGenerator
|
|
Language.Elna.Intermediate
|
|
Language.Elna.Location
|
|
Language.Elna.NameAnalysis
|
|
Language.Elna.Parser
|
|
Language.Elna.SymbolTable
|
|
Language.Elna.TypeAnalysis
|
|
Language.Elna.Types
|
|
build-depends:
|
|
exceptions ^>= 0.10,
|
|
hashable ^>= 1.4.3,
|
|
parser-combinators ^>= 1.3,
|
|
transformers ^>= 0.6.1,
|
|
vector ^>= 0.13.1,
|
|
unordered-containers ^>= 0.2.20
|
|
hs-source-dirs: lib
|
|
|
|
executable elna
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
elna:elna-internal
|
|
hs-source-dirs: src
|
|
|
|
test-suite elna-test
|
|
import: warnings
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
other-modules:
|
|
Language.Elna.NameAnalysisSpec
|
|
Language.Elna.ParserSpec
|
|
hs-source-dirs:
|
|
tests
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
|
|
|
|
build-depends:
|
|
elna:elna-internal,
|
|
hspec >= 2.10.9 && < 2.12,
|
|
hspec-expectations ^>= 0.8.2,
|
|
hspec-megaparsec ^>= 2.2.0,
|
|
text
|
|
build-tool-depends:
|
|
hspec-discover:hspec-discover
|