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 /phylogenies.cabal | |
parent | d75b9577bda1e2c629dc9a9f63ee5846231e110d (diff) |
separate dot drawing into standalone program
Diffstat (limited to 'phylogenies.cabal')
-rw-r--r-- | phylogenies.cabal | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/phylogenies.cabal b/phylogenies.cabal index 22d5728..f2c776f 100644 --- a/phylogenies.cabal +++ b/phylogenies.cabal @@ -12,7 +12,7 @@ license: MIT license-file: LICENSE build-type: Simple -executable phylogenies +executable cluster main-is: cluster.hs other-modules: Paths_phylogenies @@ -28,3 +28,14 @@ executable phylogenies , ppl , random default-language: Haskell2010 + +executable draw + main-is: draw.hs + other-modules: + Paths_phylogenies + hs-source-dirs: + bin + ghc-options: -rtsopts + build-depends: + base >=4.9 && <5 + default-language: Haskell2010 |