Skip to content

Commit 5dcdfa6

Browse files
committed
Minor build changes.
1 parent beca1b5 commit 5dcdfa6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build/Helpers.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ end)
5151
]]
5252

5353
basedir = path.getdirectory(_PREMAKE_COMMAND)
54+
premake.path = premake.path .. ";" .. path.join(basedir, "modules")
55+
5456
depsdir = path.getabsolute("../deps");
5557
srcdir = path.getabsolute("../src");
5658
incdir = path.getabsolute("../include");

build/premake5.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44

55
config = {}
66

7-
dofile "Helpers.lua"
8-
dofile "LLVM.lua"
7+
include "Helpers.lua"
8+
include "LLVM.lua"
99

10-
solution "CppSharp"
10+
workspace "CppSharp"
1111

1212
configurations { "Debug", "Release" }
1313
platforms { target_architecture() }
1414

1515
characterset "Unicode"
1616
symbols "On"
17-
17+
1818
location (builddir)
1919
objdir (objsdir)
2020
targetdir (libdir)
2121
debugdir (bindir)
2222

2323
filter "system:windows"
2424
defines { "WINDOWS" }
25-
25+
2626
filter {}
2727

2828
group "Libraries"

0 commit comments

Comments
 (0)