From 9b18eb1777aeb2fb708fdb86ee758d056c5a6b25 Mon Sep 17 00:00:00 2001 From: Guoyi Zhang Date: Wed, 18 Sep 2024 17:06:34 +1000 Subject: [PATCH] add: dub.sdl multiple configuration --- dub.sdl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dub.sdl b/dub.sdl index 76c54a5..d5a11cc 100644 --- a/dub.sdl +++ b/dub.sdl @@ -3,3 +3,16 @@ description "Reference Genome based Exon Phylogeny Pipeline" authors "Guoyi Zhang" copyright "Copyright © 2024, Guoyi Zhang" license "GPL-2.0-only" +targetType "executable" + +configuration "rgbepp" { + targetType "executable" + targetName "rgbepp" + sourceFiles "RGBEPP.d" +} + +configuration "delstop" { + targetType "executable" + targetName "delstop" + sourceFiles "delstop.d" +}