PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

CONTRIBUTING.md 518B

vor 3 Jahren
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. ```