-
Notifications
You must be signed in to change notification settings - Fork 41
/
cpml-scm-1.rockspec
31 lines (31 loc) · 1.03 KB
/
cpml-scm-1.rockspec
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
package = "cpml"
version = "scm-1"
source = {
url = "git://github.com/excessive/cpml.git"
}
description = {
summary = "Cirno's Perfect Math Library",
detailed = "Various useful bits of game math. 3D line intersections, ray casting, vectors, matrices, quaternions, etc.",
homepage = "http://github.com/excessive/cpml.git",
license = "MIT"
}
dependencies = {
"lua ~> 5.1"
}
build = {
type = "builtin",
modules = {
["cpml"] = "init.lua",
["cpml.modules.color"] = "modules/color.lua",
["cpml.modules.constants"] = "modules/constants.lua",
["cpml.modules.intersect"] = "modules/intersect.lua",
["cpml.modules.mat4"] = "modules/mat4.lua",
["cpml.modules.mesh"] = "modules/mesh.lua",
["cpml.modules.octree"] = "modules/octree.lua",
["cpml.modules.quat"] = "modules/quat.lua",
["cpml.modules.simplex"] = "modules/simplex.lua",
["cpml.modules.utils"] = "modules/utils.lua",
["cpml.modules.vec2"] = "modules/vec2.lua",
["cpml.modules.vec3"] = "modules/vec3.lua",
}
}