mapnik/utils/mapnik-render/CMakeLists.txt
2021-09-22 19:52:39 +02:00

12 lines
275 B
CMake

project(mapnik-render)
find_package(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS program_options)
add_executable(mapnik-render mapnik-render.cpp)
target_link_libraries(mapnik-render PRIVATE
mapnik::mapnik
Boost::program_options
)
mapnik_install(mapnik-render)