* Added ability to switch to OpenSSL 1.1.1n * Fixed OpenSSL compilation challenges - the CRL stuff works now * Added instructions on using OpenSSL 1.1.1 to README * Added vcpkg args to handle openssl variants
8 lines
307 B
CMake
8 lines
307 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()
|