From c7059c4d7309f1371f5acf8398b4adb4f2f33881 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Wed, 25 Jan 2023 08:37:54 +1100 Subject: separate dot drawing into standalone program --- package.yaml | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'package.yaml') diff --git a/package.yaml b/package.yaml index 45e1f72..aa823e9 100644 --- a/package.yaml +++ b/package.yaml @@ -4,15 +4,22 @@ synopsis: phylogeny inferencing maintainer: Justin Bedo license: MIT -executable: - main: cluster.hs - source-dirs: bin - ghc-options: [-rtsopts] - dependencies: - - base >= 4.9 && < 5 - - ppl - - containers - - log-domain - - random - - optparse-applicative - - ghc-compact +executables: + cluster: + main: cluster.hs + source-dirs: bin + ghc-options: [-rtsopts] + dependencies: + - base >= 4.9 && < 5 + - ppl + - containers + - log-domain + - random + - optparse-applicative + - ghc-compact + draw: + main: draw.hs + source-dirs: bin + ghc-options: [-rtsopts] + dependencies: + - base >= 4.9 && < 5 -- cgit v1.2.3