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