2022-08-11 22:54:50 +02:00
|
|
|
add_executable(mapnik-test-visual
|
2022-01-27 18:37:03 +01:00
|
|
|
parse_map_sizes.cpp
|
|
|
|
report.cpp
|
|
|
|
runner.cpp
|
|
|
|
run.cpp
|
|
|
|
)
|
|
|
|
target_link_libraries(mapnik-test-visual PRIVATE
|
|
|
|
Catch2::Catch2
|
|
|
|
Boost::program_options
|
|
|
|
mapnik::mapnik
|
|
|
|
mapnik::agg
|
2022-11-28 08:31:25 +01:00
|
|
|
ICU::data ICU::i18n ICU::uc # needed for the static build (TODO: why isn't this correctly propagated from mapnik::mapnik?)
|
2022-01-27 18:37:03 +01:00
|
|
|
)
|
2023-03-09 14:17:28 +01:00
|
|
|
|
2022-01-27 18:37:03 +01:00
|
|
|
# needed for cleanup.hpp
|
|
|
|
target_include_directories(mapnik-test-visual PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
|
|
|
|
|
|
mapnik_install_utility(mapnik-test-visual)
|