mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00
32 lines
659 B
Lua
32 lines
659 B
Lua
--
|
|
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
|
|
-- License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
--
|
|
|
|
project "UnitTest++"
|
|
uuid "ab932f5c-2409-11e3-b000-887628d43830"
|
|
kind "StaticLib"
|
|
|
|
removeflags {
|
|
"NoExceptions",
|
|
}
|
|
|
|
files {
|
|
"../3rdparty/UnitTest++/src/*.cpp",
|
|
"../3rdparty/UnitTest++/src/*.h",
|
|
}
|
|
|
|
configuration { "linux or osx or android-* or *nacl*" }
|
|
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 {}
|