aboutsummaryrefslogtreecommitdiff
path: root/premake5.lua
blob: 555263e008d2d3594e7a68cc03539bc28d76d550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
-- A solution contains projects, and defines the available configurations
solution "brotli"
configurations { "Release", "Debug" }
platforms { "x64", "x86" }
targetdir "bin"
location "buildfiles"
flags "RelativeLinks"
includedirs { "c/include" }

filter "configurations:Release"
  optimize "Speed"
  flags { "StaticRuntime" }

filter "configurations:Debug"
  flags { "Symbols" }

filter { "platforms:x64" }
   architecture "x86_64"

filter { "platforms:x86" }
   architecture "x86"

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" }