mapnik/utils/ogrindex/CMakeLists.txt

12 lines
211 B
Text
Raw Normal View History

2020-11-22 22:01:33 +01:00
project(ogrindex)
2020-11-20 21:15:27 +01:00
add_executable(ogrindex ogrindex.cpp)
2020-11-21 12:24:34 +01:00
2020-11-21 11:34:45 +01:00
target_link_libraries(ogrindex PRIVATE mapnik::headers mapnik::mapnik)
2020-11-21 12:24:34 +01:00
2020-11-20 21:15:27 +01:00
install(TARGETS ogrindex
EXPORT MapnikTargets
RUNTIME DESTINATION bin
2020-11-21 12:24:34 +01:00
)