mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 11:37:12 +01:00
8 lines
314 B
CMake
8 lines
314 B
CMake
![]() |
file(GLOB_RECURSE MAKEFILES ${DIR}/*/Makefile)
|
||
|
foreach(MAKEFILE ${MAKEFILES})
|
||
|
message("removing deps from ${MAKEFILE}")
|
||
|
file(READ "${MAKEFILE}" _contents)
|
||
|
string(REGEX REPLACE "\n# DO NOT DELETE THIS LINE.*" "" _contents "${_contents}")
|
||
|
file(WRITE "${MAKEFILE}" "${_contents}")
|
||
|
endforeach()
|