Skip to content

Commit c7f527e

Browse files
authored
add targets to clean command (#903)
1 parent ca6eb1b commit c7f527e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/command_clean.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ class source_clean(Command):
4141

4242
description = "Clean up the project source tree"
4343

44-
CLEAN_ROOTDIRS = ['build', 'build_cython', 'cython_debug', 'Intel_NumPy.egg-info', 'doc/_build']
44+
CLEAN_ROOTDIRS = ['build', 'build_cython', 'cython_debug', 'Intel_NumPy.egg-info', 'doc/_build', 'CMakeFiles']
4545
CLEAN_DIRS = ['__pycache__']
46-
CLEAN_FILES = ['*.so', '*.pyc', '*.pyd', '*.dll', '*.lib']
46+
CLEAN_FILES = ['*.so', '*.pyc', '*.pyd', '*.dll', '*.lib', 'CMakeCache.txt']
4747

4848
user_options = []
4949

0 commit comments

Comments
 (0)