File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,11 @@ function cleanGeneratedFilesAsync() {
6969 var pyPromise = rmFileGlobAsync ( '../pythreejs/**/*_autogen.py' ) ;
7070 var pyIndexPromise = rmFileGlobAsync ( '../pythreejs/**/__init__.py' ) ;
7171
72+ var cppPromise1 = rmFileGlobAsync ( '../xthreejs/**/*_autogen.hpp' ) ;
73+ var cppPromise2 = rmFileGlobAsync ( '../xthreejs/include/xthreejs/*.hpp' ) ;
74+ var cppPromise3 = rmFileGlobAsync ( '../xthreejs/**/*_autogen.cpp' ) ;
75+ var cmakePromise = rmFileGlobAsync ( '../xthreejs/CMakeLists.txt' ) ;
76+
7277 var docPromise = rmFileGlobAsync ( '../docs/source/**/*_autogen.rst' ) ;
7378 var docIndexPromise = rmFileGlobAsync ( '../docs/source/api/**/index.rst' ) ;
7479
@@ -78,6 +83,10 @@ function cleanGeneratedFilesAsync() {
7883 jsIndexPromise ,
7984 pyPromise ,
8085 pyIndexPromise ,
86+ cppPromise1 ,
87+ cppPromise2 ,
88+ cppPromise3 ,
89+ cmakePromise ,
8190 docPromise ,
8291 docIndexPromise ,
8392 ] ) ;
You can’t perform that action at this time.
0 commit comments