Synchronize with trunk r58457.
[reactos.git] / dll / directx / dplay / CMakeLists.txt
1
2
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(dplay.dll dplay.spec)
6
7 add_library(dplay SHARED
8 dplay_main.c
9 version.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/dplay.def)
11
12 set_module_type(dplay win32dll UNICODE)
13
14 target_link_libraries(dplay
15 uuid
16 wine)
17
18 add_importlibs(dplay
19 msvcrt
20 user32
21 advapi32
22 ole32
23 winmm
24 dinput
25 dplayx
26 kernel32
27 ntdll)
28
29 add_dependencies(dplay psdk)
30
31 add_cd_file(TARGET dplay DESTINATION reactos/system32 FOR all)
32