From 31f1466a613774369053a94eabbae38fb9cbb7f9 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Sun, 29 Jan 2023 15:17:38 -0500 Subject: [PATCH] Move OpenSSLConfig.cmake into the cmake/ directory We've already put perlasm.cmake in there. I figure CMake helper files can go in there. It also seems to match what other projects too. Change-Id: Ief6b10cf4e80b8d4b52ca53b90aa425b32037e52 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/56566 Auto-Submit: David Benjamin Reviewed-by: Adam Langley Commit-Queue: David Benjamin --- CMakeLists.txt | 2 +- OpenSSLConfig.cmake => cmake/OpenSSLConfig.cmake | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename OpenSSLConfig.cmake => cmake/OpenSSLConfig.cmake (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6085713fa..536d83e6c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -611,4 +611,4 @@ install(EXPORT OpenSSLTargets NAMESPACE OpenSSL:: DESTINATION lib/cmake/OpenSSL ) -install(FILES OpenSSLConfig.cmake DESTINATION lib/cmake/OpenSSL) +install(FILES cmake/OpenSSLConfig.cmake DESTINATION lib/cmake/OpenSSL) diff --git a/OpenSSLConfig.cmake b/cmake/OpenSSLConfig.cmake similarity index 100% rename from OpenSSLConfig.cmake rename to cmake/OpenSSLConfig.cmake