From 96f8a1236a7e2575fa86c01059b8a9ae34c3f9c5 Mon Sep 17 00:00:00 2001 From: Anatoly Serdtcev Date: Tue, 24 Sep 2019 18:32:33 +0300 Subject: [PATCH] Add building by cmake --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3e937c7 --- /dev/null +++ b/CMakeLists.txt @@ -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 +)