Browse Source

build: fix nunit dll filename

Linux is case-sensitive with filenames, and as the NUnit library files
are lowercase, we need to use lowercase in the build files also.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@iki.fi>
pull/251/head
Tomi Valkeinen 11 years ago
parent
commit
1400361711
  1. 4
      build/Tests.lua
  2. 2
      src/Generator.Tests/Generator.Tests.lua

4
build/Tests.lua

@ -92,7 +92,7 @@ function LinkNUnit()
links links
{ {
"NUnit.Framework", "nunit.framework",
"NSubstitute" "NSubstitute"
} }
end end
@ -164,4 +164,4 @@ end
function IncludeTests() function IncludeTests()
print("Searching for tests...") print("Searching for tests...")
IncludeDir(testsdir) IncludeDir(testsdir)
end end

2
src/Generator.Tests/Generator.Tests.lua

@ -20,6 +20,6 @@ project "CppSharp.Generator.Tests"
"CppSharp", "CppSharp",
"CppSharp.AST", "CppSharp.AST",
"CppSharp.Generator", "CppSharp.Generator",
"NUnit.Framework", "nunit.framework",
"NSubstitute" "NSubstitute"
} }

Loading…
Cancel
Save