Initial commit
This commit is contained in:
33
elna.cabal
Normal file
33
elna.cabal
Normal file
@@ -0,0 +1,33 @@
|
||||
cabal-version: 3.0
|
||||
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
|
||||
ghc-options: -Wall
|
||||
|
||||
executable elna
|
||||
import: warnings
|
||||
main-is: Main.hs
|
||||
other-modules:
|
||||
Language.Elna.AST
|
||||
Language.Elna.Parser
|
||||
default-extensions:
|
||||
OverloadedStrings
|
||||
build-depends:
|
||||
base ^>=4.17.2.1,
|
||||
megaparsec ^>= 9.6,
|
||||
text ^>= 2.0
|
||||
hs-source-dirs: src
|
||||
default-language: GHC2021
|
||||
Reference in New Issue
Block a user