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