mirror of
https://github.com/edo9300/ygopro-core
synced 2026-08-25 16:23:07 -04:00
14 lines
441 B
Lua
14 lines
441 B
Lua
project "ocgcore"
|
|
kind "StaticLib"
|
|
files { "**.cc", "**.cpp", "**.c", "**.hh", "**.hpp", "**.h" }
|
|
flags { "ExtraWarnings", "OptimizeSpeed" }
|
|
|
|
configuration "windows"
|
|
links { "lua" }
|
|
includedirs { "../lua" }
|
|
configuration "not vs*"
|
|
buildoptions { "-std=c++14" }
|
|
configuration "not windows"
|
|
links { "lua5.3++" }
|
|
buildoptions { "-std=c++14", "-Wno-unused-parameter", "-pedantic" }
|
|
includedirs { "/usr/include/lua5.3" }
|