[DIRECTX]

* Mark some modules as hotpatchable.
CORE-7959

svn path=/trunk/; revision=62356
This commit is contained in:
Amine Khaldi 2014-02-28 16:24:50 +00:00
parent 09dfcb5720
commit 66e64a9325
5 changed files with 5 additions and 5 deletions

View file

@ -26,7 +26,7 @@ add_library(d3d8 SHARED
version.rc
${CMAKE_CURRENT_BINARY_DIR}/d3d8.def)
set_module_type(d3d8 win32dll UNICODE)
set_module_type(d3d8 win32dll UNICODE HOTPATCHABLE)
target_link_libraries(d3d8 uuid wine)
add_importlibs(d3d8 wined3d msvcrt kernel32 ntdll)
add_pch(d3d8 d3d8_private.h SOURCE)

View file

@ -29,7 +29,7 @@ add_library(d3d9 SHARED
${CMAKE_CURRENT_BINARY_DIR}/d3d9_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/d3d9.def)
set_module_type(d3d9 win32dll UNICODE)
set_module_type(d3d9 win32dll UNICODE HOTPATCHABLE)
target_link_libraries(d3d9 wine)
add_importlibs(d3d9 wined3d msvcrt kernel32 ntdll)
add_pch(d3d9 d3d9_private.h SOURCE)

View file

@ -34,7 +34,7 @@ add_library(ddraw SHARED
ddraw.rc
${CMAKE_CURRENT_BINARY_DIR}/ddraw.def)
set_module_type(ddraw win32dll)
set_module_type(ddraw win32dll HOTPATCHABLE)
target_link_libraries(ddraw wine uuid dxguid ${PSEH_LIB})
add_importlibs(ddraw advapi32 gdi32 user32 wined3d msvcrt kernel32 ntdll)
add_dependencies(ddraw wineheaders)

View file

@ -24,7 +24,7 @@ add_library(dinput SHARED
add_library(dinput_data_formats data_formats.c)
add_dependencies(dinput_data_formats psdk)
set_module_type(dinput win32dll)
set_module_type(dinput win32dll HOTPATCHABLE)
target_link_libraries(dinput dxguid uuid wine)
add_importlibs(dinput comctl32 ole32 user32 advapi32 msvcrt kernel32 ntdll)
add_pch(dinput dinput_private.h SOURCE)

View file

@ -8,7 +8,7 @@ list(APPEND SOURCE
${CMAKE_CURRENT_BINARY_DIR}/dinput8.def)
add_library(dinput8 SHARED ${SOURCE} version.rc)
set_module_type(dinput8 win32dll)
set_module_type(dinput8 win32dll HOTPATCHABLE)
target_link_libraries(dinput8 dxguid uuid wine)
add_importlibs(dinput8 ole32 msvcrt kernel32 ntdll)
add_cd_file(TARGET dinput8 DESTINATION reactos/system32 FOR all)