Author: akhaldi Date: Sun Sep 7 20:19:05 2014 New Revision: 64076
URL: http://svn.reactos.org/svn/reactos?rev=64076&view=rev Log: [DPLAY] * Add the (empty) stub file to build. * We don't need to link ntdll. * dplay now compiles with Clang. CORE-8516
Modified: trunk/reactos/dll/directx/wine/dplay/CMakeLists.txt
Modified: trunk/reactos/dll/directx/wine/dplay/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/wine/dplay/CMak... ============================================================================== --- trunk/reactos/dll/directx/wine/dplay/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/directx/wine/dplay/CMakeLists.txt [iso-8859-1] Sun Sep 7 20:19:05 2014 @@ -4,8 +4,9 @@
add_library(dplay SHARED version.rc + ${CMAKE_CURRENT_BINARY_DIR}/dplay_stubs.c ${CMAKE_CURRENT_BINARY_DIR}/dplay.def)
set_module_type(dplay win32dll) -add_importlibs(dplay dplayx msvcrt kernel32 ntdll) +add_importlibs(dplay dplayx msvcrt kernel32) add_cd_file(TARGET dplay DESTINATION reactos/system32 FOR all)