summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/src/hidapi/meson.build
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
committer3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
commit30f41c02aec763d32e62351452da9ef582bc3472 (patch)
tree6bec3f65bfdcbf7f1a631da21a6d613bef5db2fa /contrib/SDL-3.2.8/src/hidapi/meson.build
parent452ff21ca02e315c64ceeb3f21c1ea357aeb1bc8 (diff)
Move contrib libraries to contrib repo
Diffstat (limited to 'contrib/SDL-3.2.8/src/hidapi/meson.build')
-rw-r--r--contrib/SDL-3.2.8/src/hidapi/meson.build22
1 files changed, 0 insertions, 22 deletions
diff --git a/contrib/SDL-3.2.8/src/hidapi/meson.build b/contrib/SDL-3.2.8/src/hidapi/meson.build
deleted file mode 100644
index d7867cb..0000000
--- a/contrib/SDL-3.2.8/src/hidapi/meson.build
+++ /dev/null
@@ -1,22 +0,0 @@
1project('hidapi', meson_version: '>=0.57.0', version: files('VERSION'))
2
3cmake = import('cmake')
4
5hidapi_build_options = cmake.subproject_options()
6hidapi_build_options.set_install(true)
7
8hidapi_build = cmake.subproject('hidapi_build_cmake', options: hidapi_build_options)
9
10if (hidapi_build.target_list().contains('hidapi_winapi'))
11 hidapi_winapi_dep = hidapi_build.dependency('hidapi_winapi')
12 hidapi_dep = hidapi_winapi_dep
13elif (hidapi_build.target_list().contains('hidapi_darwin'))
14 hidapi_darwin_dep = hidapi_build.dependency('hidapi_darwin')
15 hidapi_dep = hidapi_darwin_dep
16elif (hidapi_build.target_list().contains('hidapi_hidraw'))
17 hidapi_hidraw_dep = hidapi_build.dependency('hidapi_hidraw')
18 hidapi_dep = hidapi_hidraw_dep
19elif (hidapi_build.target_list().contains('hidapi_libusb'))
20 hidapi_libusb_dep = hidapi_build.dependency('hidapi_libusb')
21 hidapi_dep = hidapi_libusb_dep
22endif