aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-07-30 13:28:54 -0400
committerDavid Robillard <d@drobilla.net>2025-07-30 13:28:54 -0400
commita0d9567c18a5538912eb8e363b650e23b211beb1 (patch)
tree7608694b8d4b80697b98c3f2e9cc15c201888165 /meson.build
parent93db9d7b61737726747b81a586f807f9faa60a5c (diff)
downloadlv2-a0d9567c18a5538912eb8e363b650e23b211beb1.tar.xz
Avoid over-linking Windows system libraries
Not very relevant here, but clear these anyway for consistent defaults across all LV2 projects.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 07698de..925b7c0 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 David Robillard <d@drobilla.net>
+# Copyright 2021-2025 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
project(
@@ -8,6 +8,8 @@ project(
'b_ndebug=if-release',
'buildtype=release',
'c_std=c99',
+ 'c_winlibs=',
+ 'cpp_winlibs=',
],
license: 'ISC',
meson_version: '>= 0.56.0',