X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=advent-of-code21.cabal;h=d200a4fd29fc5a832bf20fb1c75ae74378f906ba;hb=da7ce507eaddb2c950ec7c08b3fe91d10e49bfeb;hp=90d342a8a95431b892ca8e871614cd95ebf70f25;hpb=d7d6a1ba093b4ae8535bcd72bfca94be5b66ec7a;p=advent-of-code-21.git diff --git a/advent-of-code21.cabal b/advent-of-code21.cabal index 90d342a..d200a4f 100644 --- a/advent-of-code21.cabal +++ b/advent-of-code21.cabal @@ -149,3 +149,30 @@ executable advent13 import: common-extensions, build-directives main-is: advent13/Main.hs build-depends: text, attoparsec, containers, linear + +executable advent14 + import: common-extensions, build-directives + main-is: advent14/Main.hs + build-depends: text, attoparsec, containers, multiset + +executable advent15 + import: common-extensions, build-directives + main-is: advent15/Main.hs + build-depends: text, containers, linear, array, pqueue, mtl, lens + +executable advent15slow + import: common-extensions, build-directives + main-is: advent15/MainSlow.hs + build-depends: text, containers, linear, array, pqueue, mtl, lens + +executable advent15prof + import: common-extensions, build-directives + main-is: advent15/Main.hs + build-depends: text, containers, linear, array, pqueue, mtl, lens + -- profiling: True + -- library-profiling: True + -- profiling-detail: toplevel-functions + ghc-options: -O2 + -Wall + -threaded + -rtsopts "-with-rtsopts=-N -p -s -hT"