[CMAKE]
[reactos.git] / reactos / dll / cpl / usrmgr / CMakeLists.txt
1
2 include_directories(BEFORE ${REACTOS_SOURCE_DIR}/include/reactos/wine)
3
4 spec2def(usrmgr.cpl usrmgr.spec)
5
6 add_library(usrmgr SHARED
7 extra.c
8 groupprops.c
9 groups.c
10 misc.c
11 userprops.c
12 users.c
13 usrmgr.c
14 usrmgr.rc
15 ${CMAKE_CURRENT_BINARY_DIR}/usrmgr.def)
16
17 set_module_type(usrmgr cpl UNICODE)
18
19 add_importlibs(usrmgr
20 advapi32
21 user32
22 gdi32
23 comctl32
24 netapi32
25 msvcrt
26 kernel32
27 ntdll)
28
29 add_pch(usrmgr usrmgr.h)
30 add_cd_file(TARGET usrmgr DESTINATION reactos/system32 FOR all)