unittest++.lua 642 B

123456789101112131415161718192021222324252627282930
  1. --
  2. -- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
  3. -- License: https://github.com/bkaradzic/bx#license-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 or rpi or riscv" }
  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 {}