blob: 0dc0a81c7ec2907c904e3a6ae5e05f27ed4234f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
cabal-version: 3.4
author: Paul Oliver
build-type: Simple
maintainer: contact@pauloliver.dev
name: hsm-bin
version: 0.1.0.0
common test-executable
build-depends:
, base
, hsm-gpio
, hsm-readline
, io-region
, monad-loops
ghc-options: -Wall -Wunused-packages
if !arch(x86_64)
ghc-options: -optl=-mno-fix-cortex-a53-835769
default-language: GHC2021
executable test-status
import: test-executable
build-depends: hsm-status
main-is: Test/Status.hs
|