-
Notifications
You must be signed in to change notification settings - Fork 0
/
TORCS.cabal
74 lines (68 loc) · 2.62 KB
/
TORCS.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
-- Initial Haskell-Racer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: TORCS
version: 0.1.1
synopsis: Bindings to the TORCS vehicle simulator.
description:
A library for building autonomous vehicles that run in the TORCS simulator. This requires the following external dependencies:
.
1. torcs 1.3.4 (<http://prdownloads.sourceforge.net/torcs/torcs-1.3.4.tar.bz2?download>)
2. scr-server 2.1 (<https://sourceforge.net/projects/cig/files/SCR%20Championship/Server%20Linux/>)
.
Not that scr-server will only work with 1.3.4, until that is updated you must use exactly torcs 1.3.4.
Complete install instructions here <https://arxiv.org/abs/1304.1672>
.
On Ubunutu 16.04, you may need to comment out line 70 in @src\/modules\/simu\/simuv2\/simu.cpp@ in order for TORCS to compile.
.
A guide script for install is available at <https://github.com/santolucito/Haskell-TORCS/blob/master/installTORCS.sh>
license: GPL
license-file: LICENSE
author: Mark Santolucito
maintainer: [email protected]
-- copyright:
category: Simulation, FRP, Bindings
build-type: Simple
extra-source-files: ChangeLog.md, README
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/santolucito/Haskell-TORCS.git
library
exposed-modules:
TORCS
, TORCS.Types
, TORCS.Monitor
, TORCS.Connect
, TORCS.Connect.Runner
, TORCS.Parser
other-modules:
TORCS.Connect.Util
other-extensions: Arrows, OverloadedStrings
build-depends: base >=4.9 && <4.11,
time >=1.6 && <1.7,
bytestring >=0.10 && <0.11,
network >=2.6 && <2.7,
Yampa >=0.10 && <0.11,
containers >= 0.5.7.1,
monad-parallel >= 0.7.2.2,
process >=1.4,
lens,
random,
random-shuffle,
monad-loops,
MonadRandom,
directory
default-language: Haskell2010
ghc-options:
-fno-warn-partial-type-signatures
-- -Wall
-- -O2
-- "-with-rtsopts= -s -h -i0.1"
executable Simple
main-is: Simple.hs
build-depends: base
, TORCS
, Yampa >=0.10 && <0.11
, bytestring >=0.10 && <0.11
hs-source-dirs: Examples
default-language: Haskell2010