From 5dafa70a302382f485600a24105c0c54559b3ecf Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Mon, 30 Sep 2013 19:58:15 +0000 Subject: [PATCH] [DSOUND] Fix version.rc inclusion. svn path=/trunk/; revision=60483 --- reactos/dll/directx/wine/dsound/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/dll/directx/wine/dsound/CMakeLists.txt b/reactos/dll/directx/wine/dsound/CMakeLists.txt index 71aa4176092..ca2fe9e28bc 100644 --- a/reactos/dll/directx/wine/dsound/CMakeLists.txt +++ b/reactos/dll/directx/wine/dsound/CMakeLists.txt @@ -18,9 +18,10 @@ add_library(dsound SHARED primary.c propset.c sound3d.c + version.rc ${CMAKE_CURRENT_BINARY_DIR}/dsound.def) -set_module_type(dsound win32dll version.rc) +set_module_type(dsound win32dll) target_link_libraries(dsound dxguid uuid wine) add_importlibs(dsound ole32 advapi32 user32 msvcrt kernel32 ntdll) add_cd_file(TARGET dsound DESTINATION reactos/system32 FOR all)