aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/build/tests.lua
blob: 25da24e7040e979f9aecaadf3da2f47050e5d6ef (plain)
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
  package.name = "tests"
  package.kind = "exe"
  package.language = "c++"
  package.path = packagepath
  package.objdir = "obj/tests"

  package.includepaths =
  {
    "../../include",
    "../../tests/CppTestHarness"
  }

  package.defines =
  {
    "_CRT_SECURE_NO_DEPRECATE"
  }

  package.links =
  {
    "ode"
  }

  package.files =
  {
    matchrecursive("../../tests/*.h", "../../tests/*.cpp")
  }