This repository has been archived by the owner on Aug 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
CMakeLists.patch.txt
77 lines (66 loc) · 3.4 KB
/
CMakeLists.patch.txt
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# XXX: Consider using https://cmake.org/cmake/help/v3.0/module/ExternalProject.html
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/.mbb_patched AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/patches")
find_program(PATCH_EXECUTABLE patch REQUIRED)
message(STATUS "Found patch: ${PATCH_EXECUTABLE}")
find_package(Git REQUIRED)
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows|MSYS")
# for searching "find" program, not the win32 one
find_program(cygpath_EXECUTABLE cygpath REQUIRED)
message(STATUS "Found cygpath: ${cygpath_EXECUTABLE}")
execute_process(
COMMAND ${cygpath_EXECUTABLE} -m /bin
OUTPUT_VARIABLE "FIND_FIND_PATH"
COMMAND_ERROR_IS_FATAL ANY
OUTPUT_STRIP_TRAILING_WHITESPACE
)
# for the below quirk
find_program(find_EXECUTABLE find REQUIRED PATHS ${FIND_FIND_PATH})
message(STATUS "Found find: ${find_EXECUTABLE}")
endif()
set(vendored_dirs
Magisk
android_logging
android_libbase
android_core
android_fmtlib
mman-win32
msvc_getline
corrosion)
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows|MSYS")
execute_process(COMMAND ${GIT_EXECUTABLE} submodule foreach --recursive ${GIT_EXECUTABLE} config core.symlinks true
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif()
execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --force --recursive
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
execute_process(COMMAND ${GIT_EXECUTABLE} submodule foreach --recursive ${GIT_EXECUTABLE} clean -fd
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows|MSYS")
# HACK: On Windows, symlinks have two different types: file and directory,
# if the target path doesn't exist when the symlink is created,
# Cygwin will fallback to create a non-native link, which makes the
# symlink unusable to pure Win32 apps (e.g. our compilers) later.
#
# Since the target path may not exist at the time of creation, we can fix
# this by deleting all the symlinks after the first checkout and
# letting Git to re-create them for us.
execute_process(COMMAND ${find_EXECUTABLE} -type l -exec rm -f {} +
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --force --recursive
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endif()
foreach(vendored_dir ${vendored_dirs})
file(GLOB patches ${CMAKE_CURRENT_SOURCE_DIR}/patches/${vendored_dir}/*.patch)
if(patches)
foreach(patch_filename ${patches})
message(STATUS "Applying ${patch_filename} for: ${vendored_dir}")
execute_process(COMMAND ${PATCH_EXECUTABLE} -p1 -i ${patch_filename} --no-backup-if-mismatch
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/${vendored_dir}
RESULT_VARIABLE ret)
if(NOT ret STREQUAL "0")
message(FATAL_ERROR "Couldn't apply ${patch_filename} for ${vendored_dir}")
endif()
endforeach()
endif()
endforeach()
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/.mbb_patched "")
endif()