diff --git a/Makefile b/Makefile index 5757ba4b..30ee9b41 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ BINS := \ hbs2-keyman \ hbs2-fixer \ hbs2-git-subscribe \ + hbs2-git-oracle \ git-remote-hbs2 \ git-hbs2 \ diff --git a/hbs2-git/hbs2-git-oracle/app/Main.hs b/hbs2-git/hbs2-git-oracle/app/Main.hs new file mode 100644 index 00000000..2eff49f4 --- /dev/null +++ b/hbs2-git/hbs2-git-oracle/app/Main.hs @@ -0,0 +1,7 @@ +module Main where + +main :: IO () +main = do + print "hbs2-git-oracle" + + diff --git a/hbs2-git/hbs2-git.cabal b/hbs2-git/hbs2-git.cabal index e309a75c..4b3960f0 100644 --- a/hbs2-git/hbs2-git.cabal +++ b/hbs2-git/hbs2-git.cabal @@ -168,3 +168,19 @@ executable git-remote-hbs2 default-language: GHC2021 +executable hbs2-git-oracle + import: shared-properties + main-is: Main.hs + -- other-modules: + -- other-extensions: + build-depends: + base, hbs2-git + , binary + , vector + , optparse-applicative + + hs-source-dirs: hbs2-git-oracle/app + default-language: GHC2021 + + +