bullet3/examples/ThirdPartyLibs/lua-5.2.3/lua_standalone/premake4.lua
2015-05-13 09:17:59 -07:00

24 lines
272 B
Lua

project ("App_LuaStandalone")
language "C++"
kind "ConsoleApp"
targetdir "../../../../bin"
includedirs {"../src"}
if os.is("Windows") then
end
if os.is("Linux") then
end
if os.is("MacOSX") then
end
links {"lua-5.2.3"}
files {
"lua.c",
}