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 59592b6 commit 70092bdCopy full SHA for 70092bd
Cabal/Cabal.cabal
@@ -393,3 +393,17 @@ library
393
TypeOperators
394
TypeSynonymInstances
395
UndecidableInstances
396
+
397
+executable Setup-simple
398
+ default-language: Haskell2010
399
+ main-is: src/setup_simple.hs
400
+ build-depends:
401
+ base,
402
+ Cabal
403
404
+executable Setup-configure
405
406
+ main-is: src/setup_configure.hs
407
408
409
Cabal/src/setup_configure.hs
@@ -0,0 +1,4 @@
1
+import Distribution.Simple
2
3
+main :: IO ()
4
+main = defaultMainWithHooks autoconfUserHooks
Cabal/src/setup_simple.hs
+main = defaultMain
0 commit comments