reactos/dll/win32/authz/CMakeLists.txt
Amine Khaldi 178300c8a6 * Sync to trunk HEAD (r53318).
* Fix PCH use in shell32.

svn path=/branches/shell32_new-bringup/; revision=53319
2011-08-19 17:45:34 +00:00

22 lines
420 B
CMake

set_unicode()
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)
add_importlibs(authz advapi32 msvcrt kernel32 ntdll)
add_pch(authz precomp.h)
add_cd_file(TARGET authz DESTINATION reactos/system32 FOR all)