Skip to content

Commit 4901f85

Browse files
committed
clean cpp generated files
1 parent fa70174 commit 4901f85

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

js/scripts/clean-generated-files.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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
]);

0 commit comments

Comments
 (0)