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() {
69
69
var pyPromise = rmFileGlobAsync ( '../pythreejs/**/*_autogen.py' ) ;
70
70
var pyIndexPromise = rmFileGlobAsync ( '../pythreejs/**/__init__.py' ) ;
71
71
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
+
72
77
var docPromise = rmFileGlobAsync ( '../docs/source/**/*_autogen.rst' ) ;
73
78
var docIndexPromise = rmFileGlobAsync ( '../docs/source/api/**/index.rst' ) ;
74
79
@@ -78,6 +83,10 @@ function cleanGeneratedFilesAsync() {
78
83
jsIndexPromise ,
79
84
pyPromise ,
80
85
pyIndexPromise ,
86
+ cppPromise1 ,
87
+ cppPromise2 ,
88
+ cppPromise3 ,
89
+ cmakePromise ,
81
90
docPromise ,
82
91
docIndexPromise ,
83
92
] ) ;
You can’t perform that action at this time.
0 commit comments