From 1400361711567fd9ef2a98b38986d4c80c2fefe1 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sun, 4 May 2014 11:37:24 +0300 Subject: [PATCH] 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 --- build/Tests.lua | 4 ++-- src/Generator.Tests/Generator.Tests.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Tests.lua b/build/Tests.lua index e2620543..dd1e908c 100644 --- a/build/Tests.lua +++ b/build/Tests.lua @@ -92,7 +92,7 @@ function LinkNUnit() links { - "NUnit.Framework", + "nunit.framework", "NSubstitute" } end @@ -164,4 +164,4 @@ end function IncludeTests() print("Searching for tests...") IncludeDir(testsdir) -end \ No newline at end of file +end diff --git a/src/Generator.Tests/Generator.Tests.lua b/src/Generator.Tests/Generator.Tests.lua index 78567c87..f8660fc6 100644 --- a/src/Generator.Tests/Generator.Tests.lua +++ b/src/Generator.Tests/Generator.Tests.lua @@ -20,6 +20,6 @@ project "CppSharp.Generator.Tests" "CppSharp", "CppSharp.AST", "CppSharp.Generator", - "NUnit.Framework", + "nunit.framework", "NSubstitute" }