9 lines
192 B
CMake
9 lines
192 B
CMake
add_executable(ogrindex ogrindex.cpp)
|
|
|
|
|
|
target_link_libraries(ogrindex PRIVATE mapnik::headers mapnik::mapnik)
|
|
|
|
install(TARGETS ogrindex
|
|
EXPORT MapnikTargets
|
|
RUNTIME DESTINATION bin
|
|
)
|