stack project setup

This commit is contained in:
vegowotenks 2025-08-11 15:53:56 +02:00
commit 6ebbb483f5
12 changed files with 461 additions and 0 deletions

55
scalie.cabal Normal file
View file

@ -0,0 +1,55 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.38.1.
--
-- see: https://github.com/sol/hpack
name: scalie
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/githubuser/scalie#readme>
author: VegOwOtenks
maintainer: vego@vegowotenks.de
copyright: 2025 VegOwOtenks
license: AGPL-3.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
library
exposed-modules:
Lib
other-modules:
Paths_scalie
hs-source-dirs:
src
ghc-options: -Weverything
build-depends:
base >=4.7 && <5
default-language: Haskell2010
executable scalie-exe
main-is: Main.hs
other-modules:
Paths_scalie
hs-source-dirs:
app
ghc-options: -Weverything -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, scalie
default-language: Haskell2010
test-suite scalie-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_scalie
hs-source-dirs:
test
ghc-options: -Weverything -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, scalie
default-language: Haskell2010