reactos/dll/win32/authz/CMakeLists.txt
Timo Kreuzer 9cc4f5ceee [CMAKE]
Don't automatically add stub files to the sources, instead add them manually where neccessary. also fix a number of spec files to resemble actual state of implementation.

svn path=/branches/cmake-bringup/; revision=50574
2011-01-31 14:20:53 +00:00

24 lines
475 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
${CMAKE_CURRENT_BINARY_DIR}/authz_precomp.h.gch
${SOURCE})
set_module_type(authz win32dll)
add_pch(authz ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_importlibs(authz advapi32 msvcrt kernel32 ntdll)
add_cab_target(authz 1)