prepare for some basic lua scripting example

This commit is contained in:
Erwin Coumans
2015-05-13 09:17:59 -07:00
parent 074b869a9f
commit dbae21ae5a
68 changed files with 20797 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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",
}