* Sync the recent cmake branch changes.
[reactos.git] / dll / win32 / dciman32 / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3
4 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
5
6 set_rc_compiler()
7
8 spec2def(dciman32.dll dciman32.spec)
9
10 list(APPEND SOURCE
11 dciman_main.c
12 ${CMAKE_CURRENT_BINARY_DIR}/dciman32_stubs.c
13 ${CMAKE_CURRENT_BINARY_DIR}/dciman32.def)
14
15 add_library(dciman32 SHARED ${SOURCE})
16
17 set_module_type(dciman32 win32dll)
18 target_link_libraries(dciman32 wine)
19 add_importlibs(dciman32 msvcrt kernel32 ntdll)
20 add_cd_file(TARGET dciman32 DESTINATION reactos/system32 FOR all)