2022-08-11 20:54:50 +00:00
|
|
|
add_executable(mapnik-test-visual
|
2022-01-27 17:37:03 +00: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 07:31:25 +00: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 17:37:03 +00:00
|
|
|
)
|
2023-03-09 13:17:28 +00:00
|
|
|
|
2022-01-27 17:37:03 +00:00
|
|
|
# needed for cleanup.hpp
|
|
|
|
target_include_directories(mapnik-test-visual PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
|
|
|
|
|
|
mapnik_install_utility(mapnik-test-visual)
|