Skip to content

Commit

Permalink
Update cleanup.cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
lyndskg authored Jan 7, 2024
1 parent 9928aa8 commit 6acb11f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions cleanup.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CMake custom target to clean up the project and its working build directory
## cmake/cleanup.cmake
# cmake/cleanup.cmake
##########################################################################################################
## CMake custom target to clean up the project and its working build directory
##########################################################################################################

# Clean build artifacts

Expand All @@ -13,6 +15,8 @@ file(REMOVE_RECURSE "${CMAKE_BINARY_DIR}/test")
file(REMOVE "${CMAKE_BINARY_DIR}/black_scholes_cpp")


##########################################################################################################

# Clean compiled object files and libraries

# Gather a list of generated object files and libraries
Expand All @@ -24,6 +28,8 @@ foreach(file ${cmake_generated_files})
endforeach()


##########################################################################################################

# Clean compiled executables

# Gather a list of generated executables
Expand All @@ -43,6 +49,8 @@ foreach(file ${cmake_executables})
endforeach()


##########################################################################################################

# Clean CTest artifacts

# Remove CTest-generated testing artifacts
Expand Down

0 comments on commit 6acb11f

Please sign in to comment.