aboutsummaryrefslogtreecommitdiff
path: root/Win32Cleanup.cmake
blob: be53ef8a951a7e3bfa9e2fd4f38a50e32ef85cf3 (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
36
37
# To be run from cmake_install.cmake, eradicates all unreferenced libraries.
# CMake 3.9.6 has a parsing bug with ENCODING UTF-8.
cmake_minimum_required (VERSION 3.10)

# CPack runs this almost without any CMake variables at all
# (cmStateSnapshot::SetDefaultDefinitions(), CMAKE_INSTALL_PREFIX, [DESTDIR])
set (installdir "${CMAKE_INSTALL_PREFIX}")
if (NOT installdir OR installdir MATCHES "^/usr(/|$)")
	return ()
endif ()

# The function is recursive and CMake has tragic scoping behaviour;
# environment variables are truly global there, in the absence of a cache
unset (ENV{seen})
function (expand path)
	set (seen $ENV{seen})
	if (path IN_LIST seen OR NOT EXISTS "${path}")
		return ()
	endif ()

	set (ENV{seen} "$ENV{seen};${path}")
	file (STRINGS "${path}" strings REGEX "[.][Dd][Ll][Ll]$" ENCODING UTF-8)
	foreach (string ${strings})
		string (REGEX MATCH "[-.+_a-zA-Z0-9]+$" word "${string}")
		expand ("${installdir}/${word}")
	endforeach ()
endfunction ()

file (GLOB roots LIST_DIRECTORIES false "${installdir}/*.[Ee][Xx][Ee]"
	"${installdir}/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.[Dd][Ll][Ll]")
foreach (binary ${roots})
	expand ("${binary}")
endforeach ()

file (GLOB libraries LIST_DIRECTORIES false "${installdir}/*.[Dd][Ll][Ll]")
list (REMOVE_ITEM libraries $ENV{seen})
file (REMOVE ${libraries})