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

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

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

Loading…
Cancel
Save