diff --git a/configure b/configure index 46eadaa4c5a..dbbe3a5395d 100755 --- a/configure +++ b/configure @@ -20439,6 +20439,7 @@ wine_fn_config_makefile dlls/d3dx10_42 enable_d3dx10_42 wine_fn_config_makefile dlls/d3dx10_43 enable_d3dx10_43 wine_fn_config_makefile dlls/d3dx10_43/tests enable_tests wine_fn_config_makefile dlls/d3dx11_42 enable_d3dx11_42 +wine_fn_config_makefile dlls/d3dx11_42/tests enable_tests wine_fn_config_makefile dlls/d3dx11_43 enable_d3dx11_43 wine_fn_config_makefile dlls/d3dx11_43/tests enable_tests wine_fn_config_makefile dlls/d3dx9_24 enable_d3dx9_24 diff --git a/configure.ac b/configure.ac index 7237289a2ad..a143f6d3d2a 100644 --- a/configure.ac +++ b/configure.ac @@ -3098,6 +3098,7 @@ WINE_CONFIG_MAKEFILE(dlls/d3dx10_42) WINE_CONFIG_MAKEFILE(dlls/d3dx10_43) WINE_CONFIG_MAKEFILE(dlls/d3dx10_43/tests) WINE_CONFIG_MAKEFILE(dlls/d3dx11_42) +WINE_CONFIG_MAKEFILE(dlls/d3dx11_42/tests) WINE_CONFIG_MAKEFILE(dlls/d3dx11_43) WINE_CONFIG_MAKEFILE(dlls/d3dx11_43/tests) WINE_CONFIG_MAKEFILE(dlls/d3dx9_24) diff --git a/dlls/d3dx11_42/Makefile.in b/dlls/d3dx11_42/Makefile.in index dbc31e2407d..c34f53a930c 100644 --- a/dlls/d3dx11_42/Makefile.in +++ b/dlls/d3dx11_42/Makefile.in @@ -1,5 +1,6 @@ EXTRADEFS = -DD3DX11_SDK_VERSION=42 -MODULE = d3dx11_42.dll +MODULE = d3dx11_42.dll +IMPORTLIB = d3dx11_42 IMPORTS = d3dcompiler PARENTSRC = ../d3dx11_43 diff --git a/dlls/d3dx11_42/tests/Makefile.in b/dlls/d3dx11_42/tests/Makefile.in new file mode 100644 index 00000000000..660f6d947cc --- /dev/null +++ b/dlls/d3dx11_42/tests/Makefile.in @@ -0,0 +1,6 @@ +TESTDLL = d3dx11_42.dll +IMPORTS = d3dx11_42 +PARENTSRC = ../../d3dx11_43/tests + +C_SRCS = \ + d3dx11.c