From fdf35536b66499884dd5b4e1740ac67e5cebb1a2 Mon Sep 17 00:00:00 2001 From: tzlil Date: Fri, 14 Apr 2023 23:46:53 +0300 Subject: add homework material --- lambda.cabal | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 lambda.cabal (limited to 'lambda.cabal') diff --git a/lambda.cabal b/lambda.cabal new file mode 100644 index 0000000..68d5068 --- /dev/null +++ b/lambda.cabal @@ -0,0 +1,49 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.35.1. +-- +-- see: https://github.com/sol/hpack + +name: lambda +version: 0.1.0.0 +author: John Hui, Stephen Edwards +maintainer: sedwards@cs.columbia.edu +copyright: 2023 John Hui and Stephen Edwards +license: BSD3 +build-type: Simple +extra-source-files: README.md + +library + exposed-modules: + AST + HW + Parse + + other-modules: Paths_lambda + hs-source-dirs: src + ghc-options: + -Wall -Wcompat -Widentities -Wincomplete-record-updates + -Wincomplete-uni-patterns -Wmissing-export-lists + -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints + + build-depends: + base >=4.7 && <5 + , containers + , megaparsec + + default-language: Haskell2010 + +executable plc + main-is: Main.hs + other-modules: Paths_lambda + hs-source-dirs: plc + ghc-options: + -Wall -Wcompat -Widentities -Wincomplete-record-updates + -Wincomplete-uni-patterns -Wmissing-export-lists + -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints + + build-depends: + base >=4.7 && <5 + , lambda + + default-language: Haskell2010 -- cgit 1.4.1