Skip to content

Commit 407b112

Browse files
committed
Make distclean better
1 parent 29c1c3d commit 407b112

File tree

3 files changed

+11
-27
lines changed

3 files changed

+11
-27
lines changed

.cmake-format

Lines changed: 0 additions & 18 deletions
This file was deleted.

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,11 @@ clean-doc:
181181

182182
clean: clean-doc
183183
-cmake --build $(BUILD) --target clean
184-
$(RM) mkerr olderr *~
184+
$(RM) mkerr olderr compile_commands.json
185185

186186
distclean: clean
187-
$(RM) -r $(BUILDROOT) stagedir
187+
$(RM) -r $(BUILDROOT) stagedir CMakeUserPresets.json
188+
find . -name '*~' -delete
188189

189190
Makefile :: ;
190191
*.txt :: ;

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# =============================================================================
22
# PYTHON PACKAGES (PIP)
33
# =============================================================================
4-
# USE (python3): pip3 install -U -r <THIS_FILE_NAME>
4+
# USE (python3): pip3 install -U -r requirements.txt
55
# =============================================================================
66

77
### python tools
88
isort
99
black
1010
pip-tools
11+
pre-commit
1112
pylint
1213
pyaml
1314

1415
### cmake build context
1516
bump2version>=1.0.1
16-
check-jsonschema>=0.29.4
17-
cmake-format>=0.6.13
18-
cmake>=3.30
19-
codespell>=2.3.0
17+
check-jsonschema>=0.35.0
18+
cmake>=4.2
19+
codespell>=2.4.1
2020
# conan>=2.7.0
21-
gcovr>=7.2
22-
ninja>=1.12
21+
gersemi>=0.23.2
22+
gcovr>=8.2
23+
ninja>=1.13
2324
yamllint>=1.35

0 commit comments

Comments
 (0)