PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CONTRIBUTING.md 518B

3 anos atrás
1234567891011121314151617181920212223242526272829303132
  1. # Contributing Guidelines
  2. First, thanks for your help ! :+1:
  3. ## Branches
  4. Please base your Pull Requests off the `master` branch.
  5. ## Requirements
  6. Requirements to build and run the unit tests:
  7. - CMake 2.8 or later
  8. - GCC / Clang with C++11 support (GCC 4.8 or higher)
  9. ## Setup
  10. Pull Google Test / Google Mock subrepository:
  11. ```
  12. $ git submodule init
  13. $ git submodule update
  14. ```
  15. Create build directory, run CMake, build and run unit tests:
  16. ```
  17. $ mkdir build && cd build
  18. $ cmake ..
  19. $ make
  20. $ ctest --verbose
  21. ```