[DIRECTX/WINE]
[reactos.git] / reactos / dll / directx / wine / dxdiagn / CMakeLists.txt
1
2
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(dxdiagn.dll dxdiagn.spec)
6
7 add_library(dxdiagn SHARED
8 container.c
9 dxdiag_main.c
10 provider.c
11 regsvr.c
12 ${CMAKE_CURRENT_BINARY_DIR}/dxdiagn.def)
13
14 set_module_type(dxdiagn win32dll UNICODE)
15
16 target_link_libraries(dxdiagn uuid wine)
17
18 add_importlibs(dxdiagn
19 user32
20 advapi32
21 ole32
22 oleaut32
23 msvcrt
24 kernel32
25 ntdll)
26
27 add_pch(dxdiagn dxdiag_private.h)
28 add_cd_file(TARGET dxdiagn DESTINATION reactos/system32 FOR all)