aboutsummaryrefslogtreecommitdiff
path: root/premake5.lua
diff options
context:
space:
mode:
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/premake5.lua b/premake5.lua
index 68217d7..63fa5de 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -4,7 +4,7 @@ configurations { "Release", "Debug" }
targetdir "bin"
location "buildfiles"
flags "RelativeLinks"
-includedirs { "include" }
+includedirs { "c/include" }
filter "configurations:Release"
optimize "Speed"
@@ -29,43 +29,43 @@ configuration { "macosx" }
project "brotlicommon"
kind "SharedLib"
language "C"
- files { "common/**.h", "common/**.c" }
+ files { "c/common/**.h", "c/common/**.c" }
project "brotlicommon_static"
kind "StaticLib"
targetname "brotlicommon"
language "C"
- files { "common/**.h", "common/**.c" }
+ files { "c/common/**.h", "c/common/**.c" }
project "brotlidec"
kind "SharedLib"
language "C"
- files { "dec/**.h", "dec/**.c" }
+ files { "c/dec/**.h", "c/dec/**.c" }
links "brotlicommon"
project "brotlidec_static"
kind "StaticLib"
targetname "brotlidec"
language "C"
- files { "dec/**.h", "dec/**.c" }
+ files { "c/dec/**.h", "c/dec/**.c" }
links "brotlicommon_static"
project "brotlienc"
kind "SharedLib"
language "C"
- files { "enc/**.h", "enc/**.c" }
+ files { "c/enc/**.h", "c/enc/**.c" }
links "brotlicommon"
project "brotlienc_static"
kind "StaticLib"
targetname "brotlienc"
language "C"
- files { "enc/**.h", "enc/**.c" }
+ files { "c/enc/**.h", "c/enc/**.c" }
links "brotlicommon_static"
project "bro"
kind "ConsoleApp"
language "C"
linkoptions "-static"
- files { "tools/bro.c" }
+ files { "c/tools/bro.c" }
links { "brotlicommon_static", "brotlidec_static", "brotlienc_static" }