aboutsummaryrefslogtreecommitdiff
path: root/cmake/Finddpp.cmake
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2023-05-31 20:15:08 -0400
committerCara Salter <cara@devcara.com>2023-05-31 20:15:08 -0400
commite09e7825369ec8217456065d31dbbbb992b7f1bb (patch)
tree37cfbc3b756f75fd6fc446090c18e4ea3464562e /cmake/Finddpp.cmake
parent31e862b7a4c5c1af9a8b331853d6bc01c49f2816 (diff)
download142bot-e09e7825369ec8217456065d31dbbbb992b7f1bb.tar.gz
142bot-e09e7825369ec8217456065d31dbbbb992b7f1bb.zip
meta: Use system libraries to compile0.5
Also: try to make pqxx not use local socket for connections (unsuccessful) Change-Id: I351fe1a405a7c204e1276a90da75ab3d32f51bdc
Diffstat (limited to 'cmake/Finddpp.cmake')
-rw-r--r--cmake/Finddpp.cmake14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmake/Finddpp.cmake b/cmake/Finddpp.cmake
new file mode 100644
index 0000000..92933b8
--- /dev/null
+++ b/cmake/Finddpp.cmake
@@ -0,0 +1,14 @@
+include(FindPackageHandleStandardArgs)
+
+find_library(DPP_LIBRARY NAMES dpp)
+
+find_package_handle_standard_args(dpp REQUIRED_VARS DPP_LIBRARY)
+
+if (DPP_FOUND)
+ mark_as_advanced(DPP_LIBRARY)
+endif()
+
+if(DPP_FOUND AND NOT TARGET dpp::dpp)
+ add_library(dpp::dpp IMPORTED UNKNOWN)
+ set_property(TARGET dpp::dpp PROPERTY IMPORTED_LOCATION ${DPP_LIBRARY})
+endif() \ No newline at end of file