Merge pull request #206 from adamharrison/FixingMacMesonBuild

Fixed meson build on Mac.
This commit is contained in:
Adam
2021-05-21 21:30:28 -04:00
committed by GitHub
+3
View File
@@ -33,6 +33,9 @@ lite_link_args = []
if cc.get_id() == 'gcc' and get_option('buildtype') == 'release' if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'
lite_link_args += ['-static-libgcc', '-static-libstdc++'] lite_link_args += ['-static-libgcc', '-static-libstdc++']
endif endif
if host_machine.system() == 'darwin'
lite_link_args += ['-framework', 'CoreServices', '-framework', 'Foundation']
endif
lite_rc = [] lite_rc = []
if host_machine.system() == 'windows' if host_machine.system() == 'windows'