aboutsummaryrefslogtreecommitdiff
path: root/hsm-cam/hsm-cam.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'hsm-cam/hsm-cam.cabal')
-rw-r--r--hsm-cam/hsm-cam.cabal22
1 files changed, 22 insertions, 0 deletions
diff --git a/hsm-cam/hsm-cam.cabal b/hsm-cam/hsm-cam.cabal
new file mode 100644
index 0000000..1f732e9
--- /dev/null
+++ b/hsm-cam/hsm-cam.cabal
@@ -0,0 +1,22 @@
+cabal-version: 3.4
+author: Paul Oliver
+build-type: Simple
+maintainer: contact@pauloliver.dev
+name: hsm-cam
+version: 0.1.0.0
+extra-source-files: Hsm/Cam/*.cpp
+
+library
+ build-depends:
+ , base
+ , hsm-log
+ , text
+
+ exposed-modules: Hsm.Cam
+ other-modules: Hsm.Cam.Lib
+ include-dirs: Hsm/Cam
+ cxx-sources: Hsm/Cam/Lib.cpp
+ cxx-options: -Wall -Wextra -O2
+ ghc-options: -Wall -Wunused-packages
+ extra-libraries: stdc++
+ default-language: GHC2021