We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4250a0b commit 42b95daCopy full SHA for 42b95da
Cabal/Cabal.cabal
@@ -415,3 +415,17 @@ library
415
TypeOperators
416
TypeSynonymInstances
417
UndecidableInstances
418
+
419
+executable cabal-main-simple
420
+ default-language: Haskell2010
421
+ main-is: src/main_simple.hs
422
+ build-depends:
423
+ base,
424
+ Cabal
425
426
+executable cabal-main-configure
427
428
+ main-is: src/main_configure.hs
429
430
431
Cabal/src/main_configure.hs
@@ -0,0 +1,4 @@
1
+import Distribution.Simple
2
3
+main :: IO ()
4
+main = defaultMainWithHooks autoconfUserHooks
Cabal/src/main_simple.hs
+main = defaultMain
0 commit comments