unittest++.lua 621 B

123456789101112131415161718192021222324252627282930
  1. --
  2. -- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
  3. -- License: http://www.opensource.org/licenses/BSD-2-Clause
  4. --
  5. project "UnitTest++"
  6. kind "StaticLib"
  7. removeflags {
  8. "NoExceptions",
  9. }
  10. files {
  11. "../3rdparty/UnitTest++/src/*.cpp",
  12. "../3rdparty/UnitTest++/src/*.h",
  13. }
  14. configuration { "linux or osx or android-* or *nacl* or ps4" }
  15. files {
  16. "../3rdparty/UnitTest++/src/Posix/**.cpp",
  17. "../3rdparty/UnitTest++/src/Posix/**.h",
  18. }
  19. configuration { "mingw* or vs*" }
  20. files {
  21. "../3rdparty/UnitTest++/src/Win32/**.cpp",
  22. "../3rdparty/UnitTest++/src/Win32/**.h",
  23. }
  24. configuration {}