1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 15:35:14 +03:00

Revert "Can we build without the exe?"

This reverts commit f44db6cfa2bb68ab37a13081a6a5423483aeabf4.
This commit is contained in:
Rob Rix 2016-01-08 15:21:19 -05:00
parent dc2e034ef0
commit 376d53b212

View File

@ -47,48 +47,48 @@ library
default-extensions: DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveGeneric, OverloadedStrings
ghc-options: -Wall -fno-warn-name-shadowing -O2 -threaded -fprof-auto "-with-rtsopts=-N -p -s -h -i0.1"
-- executable semantic-diff-exe
-- hs-source-dirs: app
-- main-is: Main.hs
-- other-modules: Parsers
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N -static
-- build-depends: base
-- , bifunctors
-- , bytestring
-- , containers
-- , directory
-- , filepath
-- , free
-- , optparse-applicative
-- , semantic-diff
-- , text >= 1.2.1.3
-- , text-icu
-- default-language: Haskell2010
-- default-extensions: OverloadedStrings
-- extra-libraries: stdc++, icuuc
--
-- executable semantic-diff-profile
-- hs-source-dirs: app
-- main-is: Main.hs
-- other-modules: Parsers
-- ghc-options: -O2
-- -threaded
-- -fprof-auto
-- "-with-rtsopts=-N -p -s -h -i0.1"
-- build-depends: base
-- , bifunctors
-- , bytestring
-- , containers
-- , directory
-- , filepath
-- , free
-- , optparse-applicative
-- , semantic-diff
-- , text >= 1.2.1.3
-- , text-icu
-- default-extensions: OverloadedStrings
-- default-language: Haskell2010
-- extra-libraries: stdc++, icuuc
executable semantic-diff-exe
hs-source-dirs: app
main-is: Main.hs
other-modules: Parsers
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static
build-depends: base
, bifunctors
, bytestring
, containers
, directory
, filepath
, free
, optparse-applicative
, semantic-diff
, text >= 1.2.1.3
, text-icu
default-language: Haskell2010
default-extensions: OverloadedStrings
extra-libraries: stdc++, icuuc
executable semantic-diff-profile
hs-source-dirs: app
main-is: Main.hs
other-modules: Parsers
ghc-options: -O2
-threaded
-fprof-auto
"-with-rtsopts=-N -p -s -h -i0.1"
build-depends: base
, bifunctors
, bytestring
, containers
, directory
, filepath
, free
, optparse-applicative
, semantic-diff
, text >= 1.2.1.3
, text-icu
default-extensions: OverloadedStrings
default-language: Haskell2010
extra-libraries: stdc++, icuuc
test-suite semantic-diff-test
type: exitcode-stdio-1.0