1
0
forked from 0ad/0ad

Disabled RTTI on Windows

This was SVN commit r1863.
This commit is contained in:
Ykkrosh 2005-01-29 17:44:57 +00:00
parent f093b53459
commit 8e9f0a8202

View File

@ -115,7 +115,11 @@ function setuppackage (projectname)
package.libpaths = {}
package.buildflags = { }
if (OS == "windows") then
package.buildflags = { "no-rtti" }
else
package.buildflags = { }
end
package.config["Testing"].buildflags = { "with-symbols", "no-runtime-checks", "no-edit-and-continue" }
package.config["Testing"].defines = { "TESTING" }