[AMSTREAM] We don't need to define WIDL_C_INLINE_WRAPPERS here anymore.
[reactos.git] / dll / directx / wine / qedit / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4 spec2def(qedit.dll qedit.spec)
5
6 list(APPEND SOURCE
7 main.c
8 mediadet.c
9 samplegrabber.c
10 timeline.c
11 qedit_private.h)
12
13 add_library(qedit SHARED
14 ${SOURCE}
15 qedit.rc
16 ${CMAKE_CURRENT_BINARY_DIR}/qedit.def)
17
18 set_module_type(qedit win32dll)
19 target_link_libraries(qedit strmbase strmiids uuid wine)
20 add_importlibs(qedit ole32 oleaut32 msvcrt kernel32 ntdll)
21 add_pch(qedit qedit_private.h SOURCE)
22 add_cd_file(TARGET qedit DESTINATION reactos/system32 FOR all)