reactos/dll/win32/security/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

18 lines
378 B
CMake

set_unicode()
add_definitions(-D__SECURITY__)
set_rc_compiler()
spec2def(security.dll security.spec)
list(APPEND SOURCE
security.rc
${CMAKE_CURRENT_BINARY_DIR}/security_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/security.def)
add_library(security SHARED ${SOURCE})
set_entrypoint(security 0)
add_importlibs(security advapi32 ntdll kernel32)
add_cab_target(security 1)