We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ebe67 commit 2aec0a5Copy full SHA for 2aec0a5
DeviceAdapters/DemoCamera/meson.build
@@ -11,8 +11,16 @@ project(
11
],
12
)
13
14
+cxx = meson.get_compiler('cpp')
15
+
16
+if cxx.get_id() in ['msvc', 'clang-cl']
17
+ add_project_arguments('-DNOMINMAX', language: 'cpp')
18
+endif
19
20
mmdevice_dep = dependency('mmdevice')
21
22
+winmm_lib = cxx.find_library('Winmm')
23
24
sources = [
25
'DemoCamera.cpp',
26
]
@@ -22,6 +30,7 @@ shared_module(
30
sources,
31
dependencies: [
32
mmdevice_dep,
33
+ winmm_lib,
34
35
gnu_symbol_visibility: 'inlineshidden',
27
36
name_prefix: '',
0 commit comments