1 2spec2def(authz.dll authz.spec) 3 4list(APPEND SOURCE 5 authz.c 6 clictx.c 7 resman.c 8 precomp.h 9 ${CMAKE_CURRENT_BINARY_DIR}/authz_stubs.c) 10 11add_library(authz MODULE 12 ${SOURCE} 13 authz.rc 14 ${CMAKE_CURRENT_BINARY_DIR}/authz.def) 15 16set_module_type(authz win32dll UNICODE) 17add_importlibs(authz advapi32 msvcrt kernel32 ntdll) 18add_pch(authz precomp.h SOURCE) 19add_cd_file(TARGET authz DESTINATION reactos/system32 FOR all) 20