diff options
author | Justin Bedo <cu@cua0.org> | 2023-01-25 08:37:54 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2023-01-25 10:14:56 +1100 |
commit | c7059c4d7309f1371f5acf8398b4adb4f2f33881 (patch) | |
tree | c833415aab3f905db682710fcf2918ffeb474172 /package.yaml | |
parent | d75b9577bda1e2c629dc9a9f63ee5846231e110d (diff) |
separate dot drawing into standalone program
Diffstat (limited to 'package.yaml')
-rw-r--r-- | package.yaml | 31 |
1 files changed, 19 insertions, 12 deletions
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 <cu@cua0.org> 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 |