name: rail-compiler-editor
version: 0.2.0.0
synopsis: Compiler and editor for the esolang rail.
description: A compiler and a graphical editor for the esoteric programming language rail.
homepage: https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14
license: MIT
license-file: LICENSE
author: see AUTHORS
maintainer: borgers@mi.fu-berlin.de
-- A copyright notice.
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md, tests/integration_tests, src/RailCompiler/stack.ll
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14.git
executable RailCompiler
main-is: Main.hs
other-modules:
Backend
CodeOptimization
ErrorHandling
InterfaceDT
IntermediateCode
Lexer
Preprocessor
SemanticalAnalysis
SyntacticalAnalysis
--other-extensions: DeriveDataTypeable, GADTs, StandaloneDeriving
build-depends: base (>=4.5.0.0 && <5), llvm-general-pure, llvm-general <3.3.12 || (>=3.4 && < 3.4.3), mtl, containers
-- Directories containing source files.
hs-source-dirs: src/RailCompiler
-- Base language which the package is written in.
default-language: Haskell2010
executable RailEditor
main-is: Main.hs
other-modules:
EditorBackend
Execute
Menu
TextArea
build-depends: base (>=4.5.0.0 && <5), llvm-general-pure, llvm-general < 3.4.3, mtl, containers, transformers, gtk, process
hs-source-dirs: src/RailEditor src/RailCompiler
default-language: Haskell2010
Test-suite testcases
main-is: Main.hs
other-modules:
TBackend
TCodeOpt
TInterCode
TLexer
TPreProc
TSemAna
TSynAna
build-depends: base (>=4.5.0.0 && <5), HUnit, llvm-general-pure, llvm-general < 3.4.3, mtl, containers, process
hs-source-dirs: tests, src/RailCompiler
default-language: Haskell2010
type: exitcode-stdio-1.0