Merge pull request #5668 from kumpera/wasm-work-p4
[mono.git] / tools / checker / premake5.lua
1 local CPPSHARP_DIR = "CppSharp/"
2 local NEWTONSOFT_DIR = "Newtonsoft.Json.6.0.8/lib/net45/",
3
4 solution "MonoChecker"
5
6   configurations { "Debug", "Release" }
7   platforms { "x32", "x64" }
8   flags { "Symbols" }
9
10   project "MonoChecker"
11
12     kind  "ConsoleApp"
13     language "C#"
14
15     files { "*.cs" }
16     links
17     {
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"
23     }