Skip to content
Snippets Groups Projects
Commit c803aff5 authored by Administrator's avatar Administrator
Browse files

Add new target for make

"make cleanlib" will remove all Cbm libraries and related dictionaries
from the lib folder of the build directory but do not delete the libraries
from the external packages. Using "make cleanlib" with a subsequent "make"
will trigger a regeneration of the dictionaries and a relinking of the
libraries.


git-svn-id: https://subversion.gsi.de/cbmsoft/cbmroot/trunk@15770 5a1b234a-d7ce-0410-9a93-fd649a8fa65c
parent b5bf1bda
No related branches found
No related tags found
No related merge requests found
Pipeline #4038 passed
......@@ -382,6 +382,11 @@ EndIf(${EveIsBuild} STREQUAL yes)
add_subdirectory (beamtime)
#EndIf(BUILD_BEAMTIME)
add_custom_target(cleanlib
COMMAND ${CMAKE_COMMAND} -E remove libCbm*
COMMAND ${CMAKE_COMMAND} -E remove G__Cbm*
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
)
Option(BUILD_DOXYGEN "Build Doxygen" OFF)
if(BUILD_DOXYGEN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment