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 dbcaf10 commit 28fe693Copy full SHA for 28fe693
Cabal/Cabal.cabal
@@ -403,3 +403,17 @@ library
403
TypeOperators
404
TypeSynonymInstances
405
UndecidableInstances
406
+
407
+executable cabal-main-simple
408
+ default-language: Haskell2010
409
+ main-is: src/main_simple.hs
410
+ build-depends:
411
+ base,
412
+ Cabal
413
414
+executable cabal-main-configure
415
416
+ main-is: src/main_configure.hs
417
418
419
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