-
Notifications
You must be signed in to change notification settings - Fork 0
/
ttree.cabal
50 lines (46 loc) · 1.42 KB
/
ttree.cabal
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
cabal-version: 2.2
name: ttree
version: 0.2.0.0
synopsis:
a TTree-reading library
description:
a TTree-reading library
license: BSD-3-Clause
license-file: LICENSE
author: Chris Pollard
maintainer: [email protected]
category: Data
build-type: Configure
source-repository head
type: git
location: http://github.com/cspollard/ttree
library
exposed-modules: Data.STLVec
, Data.TBranch
, Data.TFile
, Data.TH1
, Data.TTree
include-dirs: ext/
cxx-sources: ext/ttreeC.cxx ext/th1C.cxx ext/tfileC.cxx
cxx-options: -std=c++11 -m64
extra-libraries: stdc++ m dl Core RIO Tree Hist
ghc-options: -pgmlg++ -Wall
build-depends: base
, primitive
, vector
, unordered-containers
, exceptions
, mtl
, pipes
hs-source-dirs: src
default-language: Haskell2010
executable ttreeTest
main-is: test/Main.hs
build-depends: base
, vector
, transformers
, pipes
, ttree
default-language: Haskell2010
cxx-options: -std=c++11 -m64
ghc-options: -pgmlg++ -Wall