mirror of
https://github.com/google/brotli.git
synced 2024-11-12 15:10:15 +00:00
03739d2b11
Update: * new CLI; bro -> brotli; + man page * JNI wrappers preparation (for bazel build) * add raw binary dictionary representation `dictionary.bin` * add ability to side-load brotli RFC dictionary * decoder persists last error now * fix `BrotliDecoderDecompress` documentation * go reader don't block until necessary * more consistent bazel target names * Java dictionary data compiled footprint reduced * Java tests refactoring
72 lines
1.5 KiB
Lua
72 lines
1.5 KiB
Lua
-- A solution contains projects, and defines the available configurations
|
|
solution "brotli"
|
|
configurations { "Release", "Debug" }
|
|
targetdir "bin"
|
|
location "buildfiles"
|
|
flags "RelativeLinks"
|
|
includedirs { "c/include" }
|
|
|
|
filter "configurations:Release"
|
|
optimize "Speed"
|
|
flags { "StaticRuntime" }
|
|
|
|
filter "configurations:Debug"
|
|
flags { "Symbols" }
|
|
|
|
configuration { "gmake" }
|
|
buildoptions { "-Wall -fno-omit-frame-pointer" }
|
|
location "buildfiles/gmake"
|
|
|
|
configuration { "xcode4" }
|
|
location "buildfiles/xcode4"
|
|
|
|
configuration "linux"
|
|
links "m"
|
|
|
|
configuration { "macosx" }
|
|
defines { "OS_MACOSX" }
|
|
|
|
project "brotlicommon"
|
|
kind "SharedLib"
|
|
language "C"
|
|
files { "c/common/**.h", "c/common/**.c" }
|
|
|
|
project "brotlicommon_static"
|
|
kind "StaticLib"
|
|
targetname "brotlicommon"
|
|
language "C"
|
|
files { "c/common/**.h", "c/common/**.c" }
|
|
|
|
project "brotlidec"
|
|
kind "SharedLib"
|
|
language "C"
|
|
files { "c/dec/**.h", "c/dec/**.c" }
|
|
links "brotlicommon"
|
|
|
|
project "brotlidec_static"
|
|
kind "StaticLib"
|
|
targetname "brotlidec"
|
|
language "C"
|
|
files { "c/dec/**.h", "c/dec/**.c" }
|
|
links "brotlicommon_static"
|
|
|
|
project "brotlienc"
|
|
kind "SharedLib"
|
|
language "C"
|
|
files { "c/enc/**.h", "c/enc/**.c" }
|
|
links "brotlicommon"
|
|
|
|
project "brotlienc_static"
|
|
kind "StaticLib"
|
|
targetname "brotlienc"
|
|
language "C"
|
|
files { "c/enc/**.h", "c/enc/**.c" }
|
|
links "brotlicommon_static"
|
|
|
|
project "brotli"
|
|
kind "ConsoleApp"
|
|
language "C"
|
|
linkoptions "-static"
|
|
files { "c/tools/brotli.c" }
|
|
links { "brotlicommon_static", "brotlidec_static", "brotlienc_static" }
|