aboutsummaryrefslogtreecommitdiff
path: root/contrib/DirectX-Headers-1.618.2/test/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/DirectX-Headers-1.618.2/test/meson.build')
-rw-r--r--contrib/DirectX-Headers-1.618.2/test/meson.build15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/DirectX-Headers-1.618.2/test/meson.build b/contrib/DirectX-Headers-1.618.2/test/meson.build
new file mode 100644
index 0000000..ec8b5fe
--- /dev/null
+++ b/contrib/DirectX-Headers-1.618.2/test/meson.build
@@ -0,0 +1,15 @@
1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4headers_test = executable('DirectX-Headers-Test', 'test.cpp',
5 dependencies : [dep_dxheaders, d3d12_lib, dxcore_lib],
6 cpp_args : test_compile_opts,
7 c_args : test_compile_opts)
8test('DirectX-Headers-Test', headers_test)
9
10headers_features_test = executable('DirectX-Headers-Check-Feature-Support-Test', 'feature_check_test.cpp',
11 dependencies : [dep_dxheaders, d3d12_lib, dxcore_lib],
12 cpp_args : test_compile_opts,
13 c_args : test_compile_opts)
14test('DirectX-Headers-Check-Feature-Support-Test', headers_features_test)
15