diff options
author | David Robillard <d@drobilla.net> | 2022-06-28 16:42:32 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-28 18:52:23 -0400 |
commit | 5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c (patch) | |
tree | 4d110e87040a0db8c9624c394a3d8d2e3b3cba04 /meson.build | |
parent | acb8ea62ac287efcfb50f20cd419b70f6c5a15a9 (diff) | |
download | zix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.tar.gz zix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.tar.bz2 zix-5e71a7d6b81f12c224cc06eacb6fee8e96b2ac8c.zip |
Fix build as C with MSVC
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meson.build b/meson.build index 92525e8..5b54107 100644 --- a/meson.build +++ b/meson.build @@ -66,11 +66,6 @@ int main(void) { void* mem; posix_memalign(&mem, 8, 8); }''' name: 'posix_memalign').to_int()) endif -# Build as C++ on MSVC -if cc.get_id() == 'msvc' - add_project_arguments(['/TP'], language: ['c']) -endif - ########### # Library # ########### |