[CMAKE]
[reactos.git] / dll / win32 / authz / CMakeLists.txt
1
2 set_unicode()
3
4 spec2def(authz.dll authz.spec)
5
6 list(APPEND SOURCE
7 authz.c
8 clictx.c
9 resman.c
10 authz.rc
11 ${CMAKE_CURRENT_BINARY_DIR}/authz_stubs.c
12 ${CMAKE_CURRENT_BINARY_DIR}/authz.def)
13
14 add_library(authz SHARED
15 ${CMAKE_CURRENT_BINARY_DIR}/authz_precomp.h.gch
16 ${SOURCE})
17
18 set_module_type(authz win32dll)
19
20 add_pch(authz ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
21 add_importlibs(authz advapi32 msvcrt kernel32 ntdll)
22
23 add_cab_target(authz 1)