From e09e7825369ec8217456065d31dbbbb992b7f1bb Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Wed, 31 May 2023 20:15:08 -0400 Subject: meta: Use system libraries to compile Also: try to make pqxx not use local socket for connections (unsuccessful) Change-Id: I351fe1a405a7c204e1276a90da75ab3d32f51bdc --- cmake/Findcpr.cmake | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cmake/Findcpr.cmake (limited to 'cmake/Findcpr.cmake') diff --git a/cmake/Findcpr.cmake b/cmake/Findcpr.cmake new file mode 100644 index 0000000..a8aed9d --- /dev/null +++ b/cmake/Findcpr.cmake @@ -0,0 +1,14 @@ +include(FindPackageHandleStandardArgs) + +find_library(CPR_LIBRARY NAMES cpr) + +find_package_handle_standard_args(cpr REQUIRED_VARS CPR_LIBRARY) + +if (CPR_FOUND) + mark_as_advanced(CPR_LIBRARY) +endif() + +if(CPR_FOUND AND NOT TARGET cpr::cpr) + add_library(cpr::cpr IMPORTED UNKNOWN) + set_property(TARGET cpr::cpr PROPERTY IMPORTED_LOCATION ${CPR_LIBRARY}) +endif() \ No newline at end of file -- cgit v1.2.3