forked from HairyDude/pdxparse
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pdxparse.cabal
155 lines (146 loc) · 5.74 KB
/
pdxparse.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
-- Initial pdxparse.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: pdxparse
version: 0.8.10.2
synopsis: A parser for scripts used in Paradox Development Studios games
description: This program extracts script and localization files from
games by Paradox Development Studios to the format
(including templates, etc.) used by Paradox wikis.
Currently only Europa Universalis IV is supported.
homepage: https://github.com/HairyDude/pdxparse
license: MIT
license-file: LICENSE
author: Peter Berry
maintainer: [email protected]
category: Game
build-type: Simple
extra-source-files: README.md
data-files: settings.yml
cabal-version: >=1.10
executable pdxparse
main-is: Main.hs
other-modules: Abstract,
Doc,
EU4.Common,
EU4.Decisions,
EU4.Events,
EU4.Extra,
EU4.Handlers
EU4.IdeaGroups,
EU4.IO,
EU4.Missions,
EU4.Modifiers,
EU4.Policies,
EU4.Scripted
EU4.Settings,
EU4.Templates,
EU4.Types,
FileIO,
HOI4.CharactersAndTraits
HOI4.Common,
HOI4.Decisions,
HOI4.Events,
HOI4.Handlers,
HOI4.Ideas,
HOI4.IO,
HOI4.Messages,
HOI4.Misc,
HOI4.Modifiers,
HOI4.NationalFocus,
HOI4.Settings,
HOI4.SpecialHandlers,
HOI4.TechAndEquipment,
HOI4.Templates,
HOI4.Types,
Interface
Localization,
MessageTools,
Messages,
Paths_pdxparse,
Platform,
QQ,
Settings,
SettingsTypes,
Stellaris.Common,
Stellaris.Events,
Stellaris.Settings,
Stellaris.Types,
Vic2.Settings,
Vic2.Types,
Yaml
default-extensions: DeriveGeneric,
FlexibleContexts,
FlexibleInstances,
GADTs,
LambdaCase,
MultiParamTypeClasses,
OverloadedStrings,
QuasiQuotes,
ScopedTypeVariables,
StandaloneDeriving,
-- StrictData,
TemplateHaskell,
TupleSections,
TypeFamilies,
ViewPatterns
-- build-depends: base >=4.7 && <4.9,
-- array >= 0.5 && < 0.6,
-- attoparsec >=0.13 && <0.14,
-- bytestring >=0.10 && <0.11,
-- bytestring-trie >=0.2 && <0.3,
-- containers >=0.5 && <0.6,
-- directory >=1.2 && <1.3,
-- filepath >=1.3 && <1.5,
-- haskell-src-meta >=0.6 && <0.7,
-- monad-logger >=0.3 && <0.4,
-- mtl >=2.1 && <2.3,
-- shakespeare >=2.0,
-- regex-tdfa >= 1.2 && <1.3,
-- template-haskell >= 2.10 && <2.11,
-- text >=1.2 && <1.3,
-- th-lift >=0.7 && <0.8,
-- th-lift-instances >=0.1 && <0.2,
-- unordered-containers >=0.2 && <0.3,
-- wl-pprint-text >=1.1 && <1.2,
build-depends: base >=4.9 && >=4.14,
array >= 0.5,
attoparsec >=0.13,
bytestring >=0.10,
bytestring-trie >=0.2,
containers >=0.5,
directory >=1.2,
dir-traverse >=0.2.3.0,
filepath >=1.3,
hashable >=1.2,
haskell-src-meta >=0.6,
monad-logger >=0.3,
mtl >=2.1,
shakespeare >=2.0,
regex-tdfa >= 1.2,
regex-compat,
template-haskell >= 2.10,
text >=1.2,
th-lift >=0.7,
th-lift-instances >=0.1,
unordered-containers >=0.2,
insert-ordered-containers >=0.2,
wl-pprint-text >=1.1,
yaml >=0.8
if os(windows)
build-depends: Win32
hs-source-dirs: src
if os(windows)
hs-source-dirs: os/win32
else
hs-source-dirs: os/unix
default-language: Haskell2010
ghc-options: -Wincomplete-patterns
-haddock
-fmax-pmcheck-models=3000000
-Werror
-j
+RTS -A32m
-RTS
source-repository head
type: git
location: https://github.com/HairyDude/pdxparse