Skip to content

Commit

Permalink
Remove build directories when cleaning target "compile".
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Dec 14, 2024
1 parent 56b3f17 commit fe37092
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_system/targets/compilation/cpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
.depends_on(VENV) \
.set_runnables(SetupCpp()) \
.add_phony_target(COMPILE_CPP) \
.depends_on(SETUP_CPP) \
.depends_on(SETUP_CPP, clean_dependencies=True) \
.set_runnables(CompileCpp()) \
.add_build_target(INSTALL_CPP) \
.depends_on(COMPILE_CPP) \
Expand Down
2 changes: 1 addition & 1 deletion build_system/targets/compilation/cython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
.depends_on(COMPILE_CPP) \
.set_runnables(SetupCython()) \
.add_phony_target(COMPILE_CYTHON) \
.depends_on(SETUP_CYTHON) \
.depends_on(SETUP_CYTHON, clean_dependencies=True) \
.set_runnables(CompileCython()) \
.add_build_target(INSTALL_CYTHON) \
.depends_on(COMPILE_CYTHON) \
Expand Down

0 comments on commit fe37092

Please sign in to comment.