Sync with trunk rev.61910 to get latest improvements and bugfixes.
[reactos.git] / dll / directx / wine / amstream / CMakeLists.txt
1
2 add_definitions(
3 -D__WINESRC__
4 -DWIDL_C_INLINE_WRAPPERS)
5
6 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
7 spec2def(amstream.dll amstream.spec)
8
9 list(APPEND SOURCE
10 amstream.c
11 audiodata.c
12 main.c
13 mediastream.c
14 mediastreamfilter.c
15 ${CMAKE_CURRENT_BINARY_DIR}/amstream.def)
16
17 add_library(amstream SHARED ${SOURCE} version.rc)
18 set_module_type(amstream win32dll)
19 target_link_libraries(amstream strmbase strmiids uuid wine)
20 add_importlibs(amstream ole32 msvcrt kernel32 ntdll)
21 add_cd_file(TARGET amstream DESTINATION reactos/system32 FOR all)