Browse Source

Added build scripts for CLI.

pull/732/head
Joao Matos 9 years ago
parent
commit
62dbdb6bfa
  1. 3
      build/premake5.lua
  2. 18
      src/CLI/premake5.lua

3
build/premake5.lua

@ -31,7 +31,8 @@ solution "CppSharp" @@ -31,7 +31,8 @@ solution "CppSharp"
include (srcdir .. "/CppParser")
include (srcdir .. "/CppParser/Bindings")
include (srcdir .. "/CppParser/ParserGen")
include (srcdir .. "/Parser")
include (srcdir .. "/Parser")
include (srcdir .. "/CLI")
include (srcdir .. "/Generator")
include (srcdir .. "/Generator.Tests")
include (srcdir .. "/Runtime")

18
src/CLI/premake5.lua

@ -0,0 +1,18 @@ @@ -0,0 +1,18 @@
project "CppSharp.CLI"
SetupManagedProject()
kind "SharedLib"
language "C#"
files { "**.cs" }
links
{
"System",
"CppSharp",
"CppSharp.AST",
"CppSharp.Generator",
"CppSharp.Parser"
}
SetupParser()
Loading…
Cancel
Save