Initial Commit
This commit is contained in:
38
Y2022.cabal
Normal file
38
Y2022.cabal
Normal file
@@ -0,0 +1,38 @@
|
||||
cabal-version: 3.0
|
||||
name: Y2022
|
||||
version: 0.1.0.0
|
||||
synopsis: Solutions to Advent of Code 2022
|
||||
-- license: NONE
|
||||
author: ctsk
|
||||
maintainer: bugs@ctsk.xyz
|
||||
build-type: Simple
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/ctsk/aoc-2022
|
||||
|
||||
common warnings
|
||||
ghc-options: -Wall
|
||||
|
||||
library
|
||||
default-language: Haskell2010
|
||||
hs-source-dirs: src
|
||||
exposed-modules:
|
||||
Lib
|
||||
Print
|
||||
Days.D01
|
||||
Parse
|
||||
Util
|
||||
build-depends:
|
||||
base ^>=4.18.0.0
|
||||
, megaparsec ^>=9.4.0
|
||||
, text
|
||||
|
||||
executable Y2022
|
||||
import: warnings
|
||||
main-is: Main.hs
|
||||
build-depends:
|
||||
Y2022
|
||||
, base ^>=4.18.0.0
|
||||
hs-source-dirs: app
|
||||
default-language: Haskell2010
|
||||
Reference in New Issue
Block a user