1 2add_definitions(-D__WINESRC__) 3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine) 4spec2def(d3dx9_30.dll d3dx9_30.spec ADD_IMPORTLIB) 5 6list(APPEND SOURCE 7 d3dx9_30_main.c 8 ${CMAKE_CURRENT_BINARY_DIR}/d3dx9_30_stubs.c 9 ${CMAKE_CURRENT_BINARY_DIR}/d3dx9_30.def) 10 11add_library(d3dx9_30 SHARED ${SOURCE} version.rc) 12set_module_type(d3dx9_30 win32dll) 13target_link_libraries(d3dx9_30 wine) 14add_importlibs(d3dx9_30 d3dx9_36 msvcrt kernel32 ntdll) 15add_cd_file(TARGET d3dx9_30 DESTINATION reactos/system32 FOR all) 16