xref: /reactos/dll/win32/streamci/CMakeLists.txt (revision c2c66aff)
1
2remove_definitions(-D_WIN32_WINNT=0x502)
3add_definitions(-D_WIN32_WINNT=0x600)
4
5spec2def(streamci.dll streamci.spec)
6
7list(APPEND SOURCE
8    streamci.c
9    precomp.h)
10
11add_library(streamci SHARED
12    ${SOURCE}
13    streamci.rc
14    ${CMAKE_CURRENT_BINARY_DIR}/streamci.def)
15
16set_module_type(streamci win32dll)
17target_link_libraries(streamci uuid wine)
18add_importlibs(streamci rpcrt4 setupapi advapi32 iphlpapi dhcpcsvc ole32 user32 comctl32 ws2_32 msvcrt kernel32 ntdll)
19add_pch(streamci precomp.h SOURCE)
20add_cd_file(TARGET streamci DESTINATION reactos/system32 FOR all)
21