Skip to content

Commit 5f327dd

Browse files
authored
Merge pull request hathach#2006 from hathach/cmake
Cmake
2 parents f7aa716 + 4f96a1f commit 5f327dd

File tree

66 files changed

+296
-758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+296
-758
lines changed

.github/workflows/build_esp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
path: linkermap
5555

5656
- name: Build
57-
run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32sx.py ${{ matrix.board }}
57+
run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32.py ${{ matrix.board }}
5858

5959
- name: Linker Map
6060
run: |

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ latex
1212
*.ind
1313
.env
1414
.settings/
15-
.idea/
1615
.vscode/
1716
.gdb_history
1817
/examples/*/*/build*
@@ -28,6 +27,8 @@ cov-int
2827
*-build-dir
2928
/_bin/
3029
__pycache__
30+
cmake-build-*
31+
sdkconfig
3132

3233
# submodules
3334
hw/mcu/allwinner

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/cmake.xml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/cdc_msc.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/hid_composite.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/msc_dual_lun.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/tinyusb_examples.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 65 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ repos:
99
- id: check-yaml
1010
- id: trailing-whitespace
1111
- id: end-of-file-fixer
12+
exclude: ^.idea/
1213
- id: forbid-submodules
1314

1415
- repo: https://github.com/codespell-project/codespell

0 commit comments

Comments
 (0)