reactos/dll/win32/security/CMakeLists.txt
Timo Kreuzer 85c0b78873 [SECUR32]
- Sort exports like on Windows
- Implement some functions as proper stubs
[SECURITY]
- Cleanup exports (remove 31 of 77 functions)
- properly forward all exports
- Link to secur32 for forwarded exports

svn path=/branches/cmake-bringup/; revision=50597
2011-02-02 17:06:20 +00:00

17 lines
337 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.def)
add_library(security SHARED ${SOURCE})
set_entrypoint(security 0)
add_importlibs(security secur32 advapi32 ntdll kernel32)
add_cab_target(security 1)