From 10e23c173d0444cd6bd6d71daceaf5c2a1a32925 Mon Sep 17 00:00:00 2001 From: JoshuaJB Date: Thu, 7 Nov 2013 19:04:30 +0000 Subject: [PATCH] Add gloox library files. This was SVN commit r14096. --- build/premake/extern_libs4.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/build/premake/extern_libs4.lua b/build/premake/extern_libs4.lua index fc1f29fcd7..6f210e3c43 100644 --- a/build/premake/extern_libs4.lua +++ b/build/premake/extern_libs4.lua @@ -256,6 +256,22 @@ extern_lib_defs = { }) end, }, + gloox = { + compile_settings = function() + if os.is("windows") then + add_default_include_paths("gloox") + end + end, + link_settings = function() + if os.is("windows") then + add_default_lib_paths("gloox") + end + add_default_links({ + win_names = { "gloox-1.0" }, + unix_names = { "gloox" }, + }) + end, + }, cxxtest = { compile_settings = function() add_source_include_paths("cxxtest")