OSM-binary/CMakeLists.txt

15 lines
283 B
CMake

cmake_minimum_required(VERSION 3.7)
project(osmpbf VERSION 1.5.0)
include(GNUInstallDirs)
find_package(Protobuf REQUIRED)
add_subdirectory(osmpbf)
# The osmpbf-outline tool does not compile on Windows because getopt.h is missing
if(NOT MSVC)
add_subdirectory(tools)
endif()