From eb943d11d0b84c8f0144ce849941d8a2f40ddd61 Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Thu, 25 Mar 2021 18:42:17 +0100 Subject: [PATCH] add postgis to unit tests --- test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c5787b6ac..f2feb2bc7 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,7 @@ project(mapnik-test) find_package(Boost 1.74 REQUIRED COMPONENTS program_options) +find_package(PostgreSQL REQUIRED) include(FetchContent) include(CopyDllsForDebug) @@ -113,6 +114,7 @@ target_link_libraries(mapnik-test-unit PUBLIC mapnik::mapnik mapnik::json mapnik::wkt + PostgreSQL::PostgreSQL ) add_executable(agg_rasterizer_integer_overflow_test standalone/agg_rasterizer_integer_overflow_test.cpp)