blob: c37f41c648b9a1403aa7d0f578752cd7bee9699c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Cabal-Version: 2.2
Name: test
Version: 1.0
Exposed-Modules: A
Other-Modules: B.A
C-Sources: hello.c, c_src/hello.c
Extensions: ForeignFunctionInterface
Build-depends: base>=1.0
Executable: testA
Other-Modules: A
Main-is: MainA.hs
Extensions: OverlappingInstances
Executable: testB
Other-Modules: A, B.A
Main-is: B/MainB.hs
|