unittest++.lua 659 B

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