[APPHELP][APPHELP_APITEST] Add SdbGetFileAttributes + tests, based on the work of...
[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 layer.c
7 sdbapi.c
8 sdbfileattr.c
9 apphelp.spec
10 apphelp.h
11 ${CMAKE_CURRENT_BINARY_DIR}/apphelp_stubs.c)
12
13 add_library(apphelp SHARED
14 ${SOURCE}
15 ${CMAKE_CURRENT_BINARY_DIR}/apphelp.def)
16
17 set_module_type(apphelp win32dll)
18 target_link_libraries(apphelp wine)
19 # When binutils is fixed, we should move imagehlp to delay! CORE-6504
20 add_delay_importlibs(apphelp version)
21 add_importlibs(apphelp msvcrt imagehlp kernel32 ntdll)
22 add_cd_file(TARGET apphelp DESTINATION reactos/system32 FOR all)