[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / 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 qedit_private.h)
11
12 add_library(qedit SHARED
13 ${SOURCE}
14 qedit.rc
15 ${CMAKE_CURRENT_BINARY_DIR}/qedit.def)
16
17 set_module_type(qedit win32dll)
18 target_link_libraries(qedit strmbase strmiids uuid wine)
19 add_importlibs(qedit ole32 oleaut32 msvcrt kernel32 ntdll)
20 add_pch(qedit qedit_private.h SOURCE)
21 add_cd_file(TARGET qedit DESTINATION reactos/system32 FOR all)