This repository has been archived on 2023-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2022FuncProg-project3-RPGEn.../rpg-engine.cabal
2022-11-22 20:14:52 +01:00

23 lines
571 B
Text

name: rpg-engine
version: 1.0.0
author: Author name here
cabal-version: 1.12
build-type: Simple
library
hs-source-dirs: lib
build-depends: base >= 4.7 && <5
exposed-modules: VoorbeeldModule
executable rpg-engine
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && <5, rpg-engine
test-suite rpg-engine-test
type: exitcode-stdio-1.0
main-is: VoorbeeldTest.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends: base >=4.7 && <5, hspec <= 2.10.6, rpg-engine