blob: 93c736dd730fce7977adf796a39cc6348f23db7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
function(cleanup_build_dir)
set(user "$ENV{USERNAME}")
if(NOT user STREQUAL "sthalik")
message(WARNING "you can't run this potentially destructive function")
message(FATAL_ERROR "if you're sure, remove this line")
endif()
file(GLOB_RECURSE files LIST_DIRECTORIES TRUE RELATIVE "${CMAKE_BINARY_DIR}" "*")
set(files_ "")
set(got-install FALSE)
set(got-install-file FALSE)
set(got-cache FALSE)
foreach(i ${files})
if(i STREQUAL "CMakeCache.txt")
set(got-cache TRUE)
else()
list(APPEND files_ "${CMAKE_BINARY_DIR}/${i}")
endif()
endforeach()
if(NOT got-cache)
message(FATAL_ERROR "sanity check failed")
endif()
# let's hope nothing bad happens
file(REMOVE_RECURSE ${files_})
execute_process(COMMAND cmake . WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" OUTPUT_QUIET)
endfunction()
cleanup_build_dir()
|