e1beb19f4973813d78b0869f30ebabe40d843708
[reactos.git] / reactos / dll / appcompat / apphelp / CMakeLists.txt
1
2 spec2def(apphelp.dll apphelp.spec ADD_IMPORTLIB)
3
4 list(APPEND SOURCE
5 apphelp.c
6 sdbapi.c
7 layer.c
8 apphelp.spec
9 apphelp.h
10 ${CMAKE_CURRENT_BINARY_DIR}/apphelp_stubs.c)
11
12 add_library(apphelp SHARED
13 ${SOURCE}
14 ${CMAKE_CURRENT_BINARY_DIR}/apphelp.def)
15
16 set_module_type(apphelp win32dll)
17 target_link_libraries(apphelp wine)
18 #add_delay_importlibs(apphelp version imagehlp user32)
19 add_importlibs(apphelp msvcrt kernel32 ntdll)
20 add_cd_file(TARGET apphelp DESTINATION reactos/system32 FOR all)