Skip to content

Commit

Permalink
Set min compile version on mac to OSX 13
Browse files Browse the repository at this point in the history
  • Loading branch information
robtaylor committed Oct 10, 2023
1 parent 032c97c commit 9b872a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ project('coloquinte', 'cpp',
],
)

if build_machine.system() == 'darwin'
add_project_arguments('-mmacosx-version-min=13.0', language: ['c','cpp'])
endif

coloquinte_includes = include_directories('src')
boost_dep = dependency('boost', required: true, modules: ['system', 'filesystem', 'iostreams', 'program_options', 'unit_test_framework'])
eigen_dep = dependency('eigen3', required: true)
Expand Down

0 comments on commit 9b872a8

Please sign in to comment.