premake5.lua 529 B

1234567891011121314151617181920212223
  1. local CPPSHARP_DIR = "CppSharp/"
  2. local NEWTONSOFT_DIR = "Newtonsoft.Json.6.0.8/lib/net45/",
  3. solution "MonoChecker"
  4. configurations { "Debug", "Release" }
  5. platforms { "x32", "x64" }
  6. flags { "Symbols" }
  7. project "MonoChecker"
  8. kind "ConsoleApp"
  9. language "C#"
  10. files { "*.cs" }
  11. links
  12. {
  13. CPPSHARP_DIR .. "CppSharp",
  14. CPPSHARP_DIR .. "CppSharp.AST",
  15. CPPSHARP_DIR .. "CppSharp.Parser.CSharp",
  16. CPPSHARP_DIR .. "CppSharp.Generator",
  17. NEWTONSOFT_DIR .. "Newtonsoft.Json.dll"
  18. }