Browse Source

Minor build changes.

pull/1163/head
Joao Matos 6 years ago
parent
commit
5dcdfa66f3
  1. 2
      build/Helpers.lua
  2. 10
      build/premake5.lua

2
build/Helpers.lua

@ -51,6 +51,8 @@ end) @@ -51,6 +51,8 @@ end)
]]
basedir = path.getdirectory(_PREMAKE_COMMAND)
premake.path = premake.path .. ";" .. path.join(basedir, "modules")
depsdir = path.getabsolute("../deps");
srcdir = path.getabsolute("../src");
incdir = path.getabsolute("../include");

10
build/premake5.lua

@ -4,17 +4,17 @@ @@ -4,17 +4,17 @@
config = {}
dofile "Helpers.lua"
dofile "LLVM.lua"
include "Helpers.lua"
include "LLVM.lua"
solution "CppSharp"
workspace "CppSharp"
configurations { "Debug", "Release" }
platforms { target_architecture() }
characterset "Unicode"
symbols "On"
location (builddir)
objdir (objsdir)
targetdir (libdir)
@ -22,7 +22,7 @@ solution "CppSharp" @@ -22,7 +22,7 @@ solution "CppSharp"
filter "system:windows"
defines { "WINDOWS" }
filter {}
group "Libraries"

Loading…
Cancel
Save