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