elemental-forms/premake5.lua
sephiroth99 8561ccb6cb Build testbed only on Windows.
Do not build testbed under any other OS than Windows.

Also the testbed project has mixed C++ and C files, which does not build
under the current Linux build framework (premake and clang).
2015-09-22 00:01:53 -04:00

20 lines
313 B
Lua

include("build_tools")
group("third_party")
project("elemental-forms")
uuid("04444ac4-de86-40bc-b6b3-c7684c50cfa9")
kind("StaticLib")
language("C++")
links({})
defines({
})
includedirs({
".",
"src",
})
recursive_platform_files("src/")
if os.is("windows") then
include("testbed")
end