Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cabal warning #23

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions plutus-tx-template.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ license:
build-type: Simple
extra-doc-files: README.md

common warnings
common options
ghc-options: -Wall
default-language: Haskell2010

library scripts
import: warnings
import: options
hs-source-dirs: src
exposed-modules:
AuctionMintingPolicy
Expand All @@ -25,9 +26,8 @@ library scripts
build-depends: plutus-tx-plugin

executable gen-auction-validator-blueprint
import: warnings
import: options
hs-source-dirs: app
default-language: Haskell2010
main-is: GenAuctionValidatorBlueprint.hs
build-depends:
, base
Expand All @@ -40,9 +40,8 @@ executable gen-auction-validator-blueprint
, scripts

executable gen-minting-policy-blueprint
import: warnings
import: options
hs-source-dirs: app
default-language: Haskell2010
main-is: GenMintingPolicyBlueprint.hs
build-depends:
, base
Expand Down