mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
db7b8d8030
Fix stubs and imports for wine dx svn path=/branches/cmake-bringup/; revision=49870
33 lines
615 B
CMake
33 lines
615 B
CMake
set_rc_compiler()
|
|
|
|
spec2def(d3dx9_27.dll d3dx9_27.spec)
|
|
|
|
list(APPEND SOURCE
|
|
d3dx9_27_main.c
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/d3dx9_27_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/d3dx9_27.def)
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_library(d3dx9_27 SHARED ${SOURCE})
|
|
set_module_type(d3dx9_27 win32dll)
|
|
|
|
target_link_libraries(d3dx9_27
|
|
wine)
|
|
|
|
add_importlibs(d3dx9_27
|
|
d3d9
|
|
d3dx9_36
|
|
user32
|
|
gdi32
|
|
advapi32
|
|
wined3d
|
|
msvcrt
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_dependencies(d3dx9_27 wineheaders)
|
|
add_cab_target(d3dx9_27 1)
|