Merge pull request #3162 from alexanderkyte/ignore_pkits
[mono-project.git] / tools / checker / premake5.lua
blob9b826c9f2ed11fe16e84625ce43c6d493dc2a6e3
1 local CPPSHARP_DIR = "CppSharp/"
2 local NEWTONSOFT_DIR = "Newtonsoft.Json.6.0.8/lib/net45/",
4 solution "MonoChecker"
6 configurations { "Debug", "Release" }
7 platforms { "x32", "x64" }
8 flags { "Symbols" }
10 project "MonoChecker"
12 kind "ConsoleApp"
13 language "C#"
15 files { "*.cs" }
16 links
18 CPPSHARP_DIR .. "CppSharp",
19 CPPSHARP_DIR .. "CppSharp.AST",
20 CPPSHARP_DIR .. "CppSharp.Parser.CSharp",
21 CPPSHARP_DIR .. "CppSharp.Generator",
22 NEWTONSOFT_DIR .. "Newtonsoft.Json.dll"