2020-11-22 22:01:33 +01:00
|
|
|
project(shapeindex)
|
|
|
|
|
2021-07-06 22:07:29 +02:00
|
|
|
find_package(Boost REQUIRED COMPONENTS program_options)
|
2020-11-22 22:01:33 +01:00
|
|
|
|
2020-11-20 21:15:27 +01:00
|
|
|
add_executable(shapeindex
|
|
|
|
shapeindex.cpp
|
|
|
|
)
|
|
|
|
|
2020-11-21 12:24:34 +01:00
|
|
|
target_include_directories(shapeindex PRIVATE ../../plugins/input/shape)
|
|
|
|
target_link_libraries(shapeindex PRIVATE
|
|
|
|
Boost::program_options
|
|
|
|
mapnik::mapnik
|
|
|
|
)
|
2021-04-10 14:36:22 +02:00
|
|
|
|
|
|
|
mapnik_install(TARGET shapeindex)
|