PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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. ```