Replaced UnitTest++ with Catch.

This commit is contained in:
Branimir Karadžić
2016-05-14 09:30:53 -07:00
parent 5d4929b3f6
commit 76b7839339
75 changed files with 10500 additions and 5332 deletions

View File

@@ -32,7 +32,6 @@ function copyLib()
end
dofile "bx.lua"
dofile "unittest++.lua"
dofile "bin2c.lua"
project "bx.test"
@@ -46,11 +45,7 @@ project "bx.test"
includedirs {
path.join(BX_DIR, "include"),
path.join(BX_THIRD_PARTY_DIR, "UnitTest++/src"),
}
links {
"UnitTest++",
BX_THIRD_PARTY_DIR,
}
files {

View File

@@ -1,30 +0,0 @@
--
-- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
--
project "UnitTest++"
kind "StaticLib"
removeflags {
"NoExceptions",
}
files {
"../3rdparty/UnitTest++/src/*.cpp",
"../3rdparty/UnitTest++/src/*.h",
}
configuration { "linux or osx or android-* or *nacl* or ps4 or rpi or riscv" }
files {
"../3rdparty/UnitTest++/src/Posix/**.cpp",
"../3rdparty/UnitTest++/src/Posix/**.h",
}
configuration { "mingw* or vs*" }
files {
"../3rdparty/UnitTest++/src/Win32/**.cpp",
"../3rdparty/UnitTest++/src/Win32/**.h",
}
configuration {}