2018-02-13 03:08:01 +01:00
|
|
|
|
|
|
|
local base_dir = (solution().basedir .. "/external/sourcesdk/")
|
|
|
|
local external_dir = (solution().basedir .. "/external/")
|
|
|
|
|
|
|
|
group "external"
|
|
|
|
project "sourcesdk"
|
|
|
|
kind "StaticLib"
|
|
|
|
language "C++"
|
|
|
|
location (_ACTION .. "/" .. project().name)
|
2018-02-14 02:56:48 +01:00
|
|
|
configuration "gmake"
|
|
|
|
buildoptions { "-std=c++11" }
|
|
|
|
configuration {}
|
2018-02-13 03:08:01 +01:00
|
|
|
includedirs
|
|
|
|
{
|
|
|
|
base_dir .. "include/",
|
2021-05-01 18:38:37 +02:00
|
|
|
external_dir .. "snappy-1.1.9/"
|
2018-02-13 03:08:01 +01:00
|
|
|
}
|
|
|
|
files
|
|
|
|
{
|
2018-02-13 04:29:11 +01:00
|
|
|
base_dir .. "**.h",
|
|
|
|
base_dir .. "**.cpp"
|
2018-02-13 03:08:01 +01:00
|
|
|
}
|
|
|
|
links
|
|
|
|
{
|
|
|
|
"snappy"
|
|
|
|
}
|
|
|
|
project "*"
|
|
|
|
group ""
|