From a67595ea3f71b5047c99abbe4000a5d6e3ef7c83 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 7 May 2014 09:01:05 +0300 Subject: [PATCH] build: use linux bindings Use CppParser C# bindings for linux when compiling on Linux. Note: this always uses 64 bit version for now. Signed-off-by: Tomi Valkeinen --- src/CppParser/Bindings/premake4.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CppParser/Bindings/premake4.lua b/src/CppParser/Bindings/premake4.lua index 85da406e..cc3e4b16 100644 --- a/src/CppParser/Bindings/premake4.lua +++ b/src/CppParser/Bindings/premake4.lua @@ -30,6 +30,8 @@ project "CppSharp.Parser.CSharp" files { "CSharp/i686-pc-win32-msvc/**.cs" } elseif os.is_osx() then files { "CSharp/i686-apple-darwin12.4.0/**.cs" } + elseif os.is_linux() then + files { "CSharp/x86_64-linux-gnu/**.cs" } else print "Unknown architecture" end