xref: /reactos/dll/win32/iccvid/CMakeLists.txt (revision 62919904)
1
2add_definitions(-D__WINESRC__)
3include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4spec2def(iccvid.dll iccvid.spec)
5
6list(APPEND SOURCE
7    iccvid.c
8    ${CMAKE_CURRENT_BINARY_DIR}/iccvid.def)
9
10add_library(iccvid MODULE ${SOURCE} rsrc.rc)
11set_module_type(iccvid win32dll)
12target_link_libraries(iccvid wine)
13add_importlibs(iccvid user32 msvcrt kernel32 ntdll)
14add_cd_file(TARGET iccvid DESTINATION reactos/system32 FOR all)
15