Skip to content
This repository has been archived by the owner on Apr 25, 2020. It is now read-only.

Commit

Permalink
Add missing extra-source-files
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielG committed Oct 26, 2018
1 parent c952883 commit a9ed059
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ghc-mod.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ Extra-Source-Files: ChangeLog
test/data/file-mapping/*.hs
test/data/file-mapping/preprocessor/*.hs
test/data/file-mapping/lhs/*.lhs
test/data/file-mapping/duplicate-main/*.hs
test/data/file-mapping/duplicate-main/*.cabal
test/data/nice-qualification/*.hs
test/data/stack-project/stack.yaml.in
test/data/stack-project/new-template.cabal
Expand Down
1 change: 1 addition & 0 deletions test/data/file-mapping/duplicate-main/Main.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main = return ()
1 change: 1 addition & 0 deletions test/data/file-mapping/duplicate-main/Main_Redir.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main = return ()
1 change: 1 addition & 0 deletions test/data/file-mapping/duplicate-main/OtherMain.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main = return ()
1 change: 1 addition & 0 deletions test/data/file-mapping/duplicate-main/OtherMain_Redir.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main = return ()
21 changes: 21 additions & 0 deletions test/data/file-mapping/duplicate-main/duplicate-main.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: duplicate-main
version: 0.1.0.0
synopsis: Defines two executables
license: BSD3
license-file: LICENSE
author: Foo
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10

executable hie-test-project
main-is: Main.hs
build-depends: base
hs-source-dirs: .
default-language: Haskell2010

executable hie-test-project2
main-is: OtherMain.hs
build-depends: base
hs-source-dirs: .
default-language: Haskell2010

0 comments on commit a9ed059

Please sign in to comment.