aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9\/contrib/Ode.NET/premake.lua
diff options
context:
space:
mode:
authordan miller2007-10-19 04:28:53 +0000
committerdan miller2007-10-19 04:28:53 +0000
commit0fc46fc9590912bf6925c899edd02d7a2cdf5f79 (patch)
tree51bcae7a1b8381a6bf6fd8025a7de1e30fe0045d /libraries/ode-0.9\/contrib/Ode.NET/premake.lua
parentsmall bit of refactoring (diff)
downloadopensim-SC-0fc46fc9590912bf6925c899edd02d7a2cdf5f79.zip
opensim-SC-0fc46fc9590912bf6925c899edd02d7a2cdf5f79.tar.gz
opensim-SC-0fc46fc9590912bf6925c899edd02d7a2cdf5f79.tar.bz2
opensim-SC-0fc46fc9590912bf6925c899edd02d7a2cdf5f79.tar.xz
adding ode source to /libraries
Diffstat (limited to '')
-rwxr-xr-xlibraries/ode-0.9\/contrib/Ode.NET/premake.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/libraries/ode-0.9\/contrib/Ode.NET/premake.lua b/libraries/ode-0.9\/contrib/Ode.NET/premake.lua
new file mode 100755
index 0000000..c25a017
--- /dev/null
+++ b/libraries/ode-0.9\/contrib/Ode.NET/premake.lua
@@ -0,0 +1,29 @@
1project.name = "Ode.NET"
2
3-- Target checking
4
5 if (target and target ~= "vs2005" and target ~= "gnu") then
6 error("Ode.NET requires a .NET 2.0 compiler")
7 end
8
9
10-- Project options
11
12 addoption("with-doubles", "Use double instead of float as base numeric type")
13 addoption("with-tests", "Builds the test applications and DrawStuff library")
14 addoption("no-unsafe", "Exclude functions using unsafe code (dBodyGetPosition, etc.)")
15
16
17-- Build settings
18
19 project.config["Debug"].bindir = "bin/Debug"
20 project.config["Release"].bindir = "bin/Release"
21
22
23-- Packages
24
25 if (options["with-tests"]) then
26 dopackage("Tests")
27 dopackage("Drawstuff")
28 end
29 dopackage("Ode")