mirror of
https://github.com/xenia-project/elemental-forms.git
synced 2025-02-17 01:58:18 +00:00
![sephiroth99](/assets/img/avatar_default.png)
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).
20 lines
313 B
Lua
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
|