aboutsummaryrefslogtreecommitdiff
path: root/cmake/dpp-config.cmake
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2023-11-21 16:10:08 -0500
committerCara Salter <cara@devcara.com>2023-11-21 16:10:08 -0500
commitf78c7cf82726324fcee6b738e3d670bee02ad3ff (patch)
treeece037cba4f701f67f22bdbd8f916f66a0e08036 /cmake/dpp-config.cmake
parentbe5e0dd226a29d1d45f94d02bb63c64defbe33fd (diff)
download142bot-master.tar.gz
142bot-master.zip
autotoolsHEADmaster
no more cmake!
Diffstat (limited to 'cmake/dpp-config.cmake')
-rw-r--r--cmake/dpp-config.cmake21
1 files changed, 0 insertions, 21 deletions
diff --git a/cmake/dpp-config.cmake b/cmake/dpp-config.cmake
deleted file mode 100644
index dedc62e..0000000
--- a/cmake/dpp-config.cmake
+++ /dev/null
@@ -1,21 +0,0 @@
-# dpp-config.cmake - package configuration file
-
-## Get current filesystem path (will a prefixed by where this package was installed)
-get_filename_component(SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
-
-## Use this directory to include dpp which has the rest of the project targets
-include(${SELF_DIR}/dpp.cmake)
-
-## Set OpenSSl directory for macos. It is also in our main CMakeLists.txt, but this file is independent from that.
-if(APPLE)
- if(CMAKE_APPLE_SILICON_PROCESSOR)
- set(OPENSSL_ROOT_DIR "/opt/homebrew/opt/openssl")
- else()
- set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl")
- endif()
- find_package(OpenSSL REQUIRED)
-endif()
-
-# Search for libdpp dependencies
-include(CMakeFindDependencyMacro)
-find_dependency(OpenSSL REQUIRED)