mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
21 lines
414 B
CMake
21 lines
414 B
CMake
|
|
|
|
spec2def(authz.dll authz.spec)
|
|
|
|
list(APPEND SOURCE
|
|
authz.c
|
|
clictx.c
|
|
resman.c
|
|
authz.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/authz_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/authz.def)
|
|
|
|
add_library(authz SHARED ${SOURCE})
|
|
|
|
set_module_type(authz win32dll UNICODE)
|
|
|
|
add_importlibs(authz advapi32 msvcrt kernel32 ntdll)
|
|
add_pch(authz precomp.h)
|
|
|
|
add_cd_file(TARGET authz DESTINATION reactos/system32 FOR all)
|