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

24 lines
271 B
Lua

project ("App_LuaCompiler")
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 {
"luac.c",
}