Build fat binaries for Mac

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-06-28 12:57:40 +02:00
parent f23d348f34
commit 5052effcd8

View file

@ -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)