PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
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.

CONTRIBUTING.md 518B

3 年之前
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. ```