elna/elna.cabal

77 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-07-29 07:26:47 +02:00
cabal-version: 3.4
name: elna
version: 0.1.0.0
2024-07-21 16:15:17 +02:00
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
2024-07-23 22:44:42 +02:00
build-depends:
2024-07-29 07:26:47 +02:00
base >=4.7 && <5,
2024-07-23 22:44:42 +02:00
megaparsec ^>= 9.6,
text ^>= 2.0
2024-07-21 16:15:17 +02:00
ghc-options: -Wall
2024-07-23 22:44:42 +02:00
default-extensions:
DataKinds,
2024-07-23 22:44:42 +02:00
ExplicitForAll,
2024-08-07 22:47:35 +02:00
LambdaCase,
2024-08-08 19:11:24 +02:00
OverloadedStrings,
RecordWildCards
2024-07-29 07:26:47 +02:00
default-language: GHC2021
2024-07-21 16:15:17 +02:00
2024-07-23 22:44:42 +02:00
library elna-internal
import: warnings
exposed-modules:
2024-07-21 16:15:17 +02:00
Language.Elna.AST
2024-08-12 21:00:52 +02:00
Language.Elna.Intermediate
2024-07-26 12:22:07 +02:00
Language.Elna.Location
Language.Elna.NameAnalysis
2024-07-21 16:15:17 +02:00
Language.Elna.Parser
2024-07-26 12:22:07 +02:00
Language.Elna.SymbolTable
2024-08-06 17:02:18 +02:00
Language.Elna.TypeAnalysis
2024-07-29 07:26:47 +02:00
Language.Elna.Types
2024-07-21 16:15:17 +02:00
build-depends:
exceptions ^>= 0.10,
2024-07-26 12:22:07 +02:00
hashable ^>= 1.4.3,
parser-combinators ^>= 1.3,
2024-07-29 07:26:47 +02:00
transformers ^>= 0.6.1,
2024-07-26 12:22:07 +02:00
vector ^>= 0.13.1,
unordered-containers ^>= 0.2.20
2024-07-23 22:44:42 +02:00
hs-source-dirs: lib
executable elna
import: warnings
main-is: Main.hs
build-depends:
2024-07-29 07:26:47 +02:00
elna:elna-internal
2024-07-23 22:44:42 +02:00
hs-source-dirs: src
test-suite elna-test
import: warnings
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Language.Elna.NameAnalysisSpec
2024-07-23 22:44:42 +02:00
Language.Elna.ParserSpec
hs-source-dirs:
tests
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
2024-07-29 07:26:47 +02:00
elna:elna-internal,
2024-07-23 22:44:42 +02:00
hspec >= 2.10.9 && < 2.12,
hspec-expectations ^>= 0.8.2,
hspec-megaparsec ^>= 2.2.0,
2024-07-24 01:22:20 +02:00
text
2024-07-23 22:44:42 +02:00
build-tool-depends:
hspec-discover:hspec-discover