49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
cabal-version: 2.2
|
|
|
|
name:fifth
|
|
version: 0.1.0.0
|
|
synopsis: A stack based systems language
|
|
-- description:
|
|
homepage: https://git.annwan.me/software/fifth
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Annwan
|
|
maintainer: annwan@annwan.me
|
|
copyright: 2025 Annwan
|
|
category: Compiler
|
|
build-type: Simple
|
|
extra-source-files: README.md
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
exposed-modules:
|
|
other-modules:
|
|
build-depends: base >= 4.11 && < 5
|
|
default-language: GHC2024
|
|
ghc-options: -Wall
|
|
-Wcompat
|
|
-Widentities
|
|
-Wincomplete-record-updates
|
|
-Wincomplete-uni-patterns
|
|
-Wmissing-export-lists
|
|
-Wmissing-home-modules
|
|
-Wpartial-fields
|
|
-Wredundant-constraints
|
|
|
|
|
|
executable fifth
|
|
hs-source-dirs: src
|
|
main-is: Main.hs
|
|
default-language: GHC2024
|
|
build-depends: base >= 4.11 && < 5
|
|
, fifth
|
|
ghc-options: -Wall
|
|
-Wcompat
|
|
-Widentities
|
|
-Wincomplete-record-updates
|
|
-Wincomplete-uni-patterns
|
|
-Wmissing-export-lists
|
|
-Wmissing-home-modules
|
|
-Wpartial-fields
|
|
-Wredundant-constraints
|