mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

Add remaining Wine directx dlls to bootcd. svn path=/branches/cmake-bringup/; revision=49517
31 lines
No EOL
552 B
CMake
31 lines
No EOL
552 B
CMake
set_rc_compiler()
|
|
|
|
spec2def(d3dx9_33.dll d3dx9_33.spec)
|
|
|
|
list(APPEND SOURCE
|
|
d3dx9_33_main.c
|
|
version.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/d3dx9_33.def)
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
add_library(d3dx9_33 SHARED ${SOURCE})
|
|
set_module_type(d3dx9_33 win32dll)
|
|
|
|
target_link_libraries(d3dx9_33
|
|
wine)
|
|
|
|
add_importlibs(d3dx9_33
|
|
d3d9
|
|
user32
|
|
gdi32
|
|
advapi32
|
|
wined3d
|
|
msvcrt
|
|
kernel32
|
|
ntdll)
|
|
|
|
add_dependencies(d3dx9_33 wineheaders)
|
|
add_cab_target(d3dx9_33 1) |