From 5052effcd83c6c65eaa2df059e66bd695bb84df0 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Wed, 28 Jun 2023 12:57:40 +0200 Subject: [PATCH] Build fat binaries for Mac Signed-off-by: Alexander Borsuk --- CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fcfff2..1b8b535 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,9 @@ +cmake_minimum_required(VERSION 3.22) +set(CMAKE_OSX_ARCHITECTURES arm64;x86_64) + project(osmctools) -cmake_minimum_required(VERSION 3.6) - -add_compile_options(-O3 -march=native -ffast-math -flto) +add_compile_options(-O3 -ffast-math -flto) add_executable(osmupdate osmupdate.c) add_executable(osmfilter osmfilter.c)