Merge pull request #4 from mapsme/cmake-building

Add building by cmake
This commit is contained in:
mpimenov 2019-09-24 19:07:57 +03:00 committed by GitHub
commit 189f70dec1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
CMakeLists.txt Normal file
View file

@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.6)
add_compile_options("-O3")
add_executable(osmupdate osmupdate.c)
add_executable(osmfilter osmfilter.c)
add_executable(osmconvert osmconvert.c)
target_link_libraries(
osmconvert
z
)