The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

35 lines
929 B

4 weeks ago
  1. # Supported Platforms
  2. GoogleTest requires a codebase and compiler compliant with the C++11 standard or
  3. newer.
  4. The GoogleTest code is officially supported on the following platforms.
  5. Operating systems or tools not listed below are community-supported. For
  6. community-supported platforms, patches that do not complicate the code may be
  7. considered.
  8. If you notice any problems on your platform, please file an issue on the
  9. [GoogleTest GitHub Issue Tracker](https://github.com/google/googletest/issues).
  10. Pull requests containing fixes are welcome!
  11. ### Operating systems
  12. * Linux
  13. * macOS
  14. * Windows
  15. ### Compilers
  16. * gcc 5.0+
  17. * clang 5.0+
  18. * MSVC 2015+
  19. **macOS users:** Xcode 9.3+ provides clang 5.0+.
  20. ### Build systems
  21. * [Bazel](https://bazel.build/)
  22. * [CMake](https://cmake.org/)
  23. Bazel is the build system used by the team internally and in tests. CMake is
  24. supported on a best-effort basis and by the community.