Commit 0bfd1059 authored by nanahira's avatar nanahira

dont include lua for linux non-lua build

parent dab36a5d
...@@ -4,7 +4,12 @@ project "ocgcore" ...@@ -4,7 +4,12 @@ project "ocgcore"
files { "*.cpp", "*.h" } files { "*.cpp", "*.h" }
links { "lua" } links { "lua" }
includedirs { "../lua" } if BUILD_LUA then
includedirs { "../lua" }
end
filter "action:vs*"
includedirs { "../lua" }
filter "not action:vs*" filter "not action:vs*"
buildoptions { "-std=c++14" } buildoptions { "-std=c++14" }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment