[REACTOS]
[reactos.git] / reactos / dll / win32 / avifil32 / CMakeLists.txt
1
2 remove_definitions(-D_WIN32_WINNT=0x502)
3 add_definitions(-D_WIN32_WINNT=0x600)
4
5 add_definitions(-D__WINESRC__)
6 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
7 spec2def(avifil32.dll avifil32.spec ADD_IMPORTLIB)
8
9 add_library(avifil32 SHARED
10 acmstream.c
11 api.c
12 avifile.c
13 editstream.c
14 extrachunk.c
15 factory.c
16 getframe.c
17 icmstream.c
18 tmpfile.c
19 wavfile.c
20 rsrc.rc
21 ${CMAKE_CURRENT_BINARY_DIR}/avifil32.def)
22
23 set_module_type(avifil32 win32dll)
24 target_link_libraries(avifil32 uuid wine)
25
26 add_importlibs(avifil32
27 msvcrt
28 msacm32
29 msvfw32
30 winmm
31 ole32
32 user32
33 advapi32
34 kernel32
35 ntdll)
36
37 add_cd_file(TARGET avifil32 DESTINATION reactos/system32 FOR all)