mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
22 lines
439 B
CMake
22 lines
439 B
CMake
|
|
|
|
spec2def(authz.dll authz.spec)
|
|
|
|
list(APPEND SOURCE
|
|
authz.c
|
|
clictx.c
|
|
resman.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/authz_stubs.c)
|
|
|
|
add_library(authz SHARED
|
|
${SOURCE}
|
|
authz.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/authz.def)
|
|
|
|
set_module_type(authz win32dll UNICODE)
|
|
|
|
add_importlibs(authz advapi32 msvcrt kernel32 ntdll)
|
|
add_pch(authz precomp.h SOURCE)
|
|
|
|
add_cd_file(TARGET authz DESTINATION reactos/system32 FOR all)
|